HomeSort by relevance Sort by last modified time
    Searched refs:libc (Results 26 - 50 of 425) sorted by null

12 3 4 5 6 7 8 91011>>

  /bionic/linker/tests/
Android.mk 27 LOCAL_C_INCLUDES := $(LOCAL_PATH)/../../libc/
40 LOCAL_SRC_FILES += ../../libc/bionic/libc_logging.cpp
  /cts/apps/cts-usb-accessory/
Android.mk 30 bionic/libc/kernel/uapi \
31 bionic/libc/kernel/uapi/asm-x86 \
  /device/google/contexthub/firmware/misc/cpu/cortexm4f/
Makefile 33 SRCS_os += ../lib/libc/memcpy-armv7m.S ../lib/libc/memset.c ../lib/libc/memcmp.c ../lib/libc/memmove.c
36 SRCS_bl += ../lib/libc/memcpy-armv7m.S ../lib/libc/memset.c ../lib/libc/memcmp.c ../lib/libc/memmove.c
  /external/fsck_msdos/
Android.mk 13 LOCAL_SYSTEM_SHARED_LIBRARIES := libc
  /external/mmc-utils/
Android.mk 9 LOCAL_SHARED_LIBRARIES := libcutils libc
  /frameworks/native/cmds/rawbu/
Android.mk 8 LOCAL_SHARED_LIBRARIES := libcutils libc
  /hardware/qcom/msm8x27/
clean.sh 3 CLEAN_HEADER=../../../bionic/libc/kernel/tools/clean_header.py
  /system/core/lmkd/
Android.mk 5 LOCAL_SHARED_LIBRARIES := liblog libm libc libprocessgroup
  /system/extras/tests/icachetest/
Android.mk 8 LOCAL_SHARED_LIBRARIES := libc
  /system/extras/tests/suspend_stress/
Android.mk 8 LOCAL_STATIC_LIBRARIES := libc libcutils
  /cts/apps/CtsVerifier/jni/verifier/
Android.mk 31 LOCAL_CXX_STL := libc++_static
  /device/google/contexthub/util/stm32_flash/
Android.mk 21 LOCAL_SHARED_LIBRARIES := libcutils libc
  /external/autotest/client/site_tests/kernel_CryptoAPI/
kernel_CryptoAPI.py 94 libc = ctypes.CDLL("libc.so.6", use_errno=True)
98 libc.socket.argtypes = [ ctypes.c_int, ctypes.c_int, ctypes.c_int ]
99 libc.bind.argtypes = [ ctypes.c_int, ctypes.c_void_p, ctypes.c_int ]
100 libc.send.argtypes = [ ctypes.c_int, ctypes.c_void_p, ctypes.c_size_t,
102 libc.recv.argtypes = [ ctypes.c_int, ctypes.c_void_p, ctypes.c_size_t,
105 sock = libc.socket(AF_ALG, SOCK_SEQPACKET, 0)
107 libc.perror("socket")
111 if libc.bind(sock, ctypes.addressof(alg), ctypes.sizeof(alg)) == -1:
112 libc.perror("bind"
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/
Android.mk 9 LOCAL_SHARED_LIBRARIES := libc++_shared
16 LOCAL_STATIC_LIBRARIES := libc++_static
  /external/elfutils/tests/
run-unstrip-M.sh 33 7f31e7d9f000-7f31e7f29000 r-xp 00000000 fd:00 917531 /lib64/libc-1.13.so
34 7f31e7f29000-7f31e8128000 ---p 0018a000 fd:00 917531 /lib64/libc-1.13.so
35 7f31e8128000-7f31e812c000 r--p 00189000 fd:00 917531 /lib64/libc-1.13.so
36 7f31e812c000-7f31e812d000 rw-p 0018d000 fd:00 917531 /lib64/libc-1.13.so
48 0x7f31e7d9f000+0x38e000 - - - /lib64/libc-1.13.so
  /hardware/qcom/audio/legacy/libalsa-intf/
Android.mk 10 LOCAL_SHARED_LIBRARIES:= libc libcutils libalsa-intf
18 LOCAL_SHARED_LIBRARIES:= libc libcutils libalsa-intf
25 LOCAL_SHARED_LIBRARIES := libc libcutils libalsa-intf
32 LOCAL_SHARED_LIBRARIES:= libc libcutils libalsa-intf
44 LOCAL_SHARED_LIBRARIES:= libc libcutils #libutils #libmedia libhardware_legacy
  /bionic/libc/arch-x86/
x86.mk 63 upstream-freebsd/lib/libc/string/wcschr.c \
64 upstream-freebsd/lib/libc/string/wcscmp.c \
65 upstream-freebsd/lib/libc/string/wcslen.c \
66 upstream-freebsd/lib/libc/string/wcsrchr.c \
70 upstream-freebsd/lib/libc/string/wcscat.c \
71 upstream-freebsd/lib/libc/string/wcscpy.c
76 upstream-freebsd/lib/libc/string/wmemcmp.c
80 upstream-openbsd/lib/libc/string/memchr.c \
81 upstream-openbsd/lib/libc/string/memmove.c \
82 upstream-openbsd/lib/libc/string/memrchr.c
    [all...]
  /external/libcxx/
Android.mk 58 LOCAL_MODULE := libc++_static
65 LOCAL_WHOLE_STATIC_LIBRARIES := libc++abi
71 LOCAL_MODULE := libc++
74 LOCAL_WHOLE_STATIC_LIBRARIES := libc++_static
83 LOCAL_MODULE := libc++_static
90 LOCAL_WHOLE_STATIC_LIBRARIES := libc++abi
97 LOCAL_MODULE := libc++
101 LOCAL_WHOLE_STATIC_LIBRARIES := libc++_static
107 -Wl,-unexported_symbols_list,external/libcxx/lib/libc++unexp.exp \
  /external/e2fsprogs/lib/et/
Android.mk 40 libext2_com_err_system_shared_libraries := libc
47 LOCAL_SYSTEM_SHARED_LIBRARIES := libc
58 LOCAL_STATIC_LIBRARIES := libc
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_errno.py 15 libc = CDLL(libc_name, use_errno=True)
17 libc_open = libc._open
19 libc_open = libc.open
33 libc = CDLL(libc_name, use_errno=False)
35 libc_open = libc._open
37 libc_open = libc.open
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_errno.py 15 libc = CDLL(libc_name, use_errno=True)
17 libc_open = libc._open
19 libc_open = libc.open
33 libc = CDLL(libc_name, use_errno=False)
35 libc_open = libc._open
37 libc_open = libc.open
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_errno.py 15 libc = CDLL(libc_name, use_errno=True)
17 libc_open = libc._open
19 libc_open = libc.open
33 libc = CDLL(libc_name, use_errno=False)
35 libc_open = libc._open
37 libc_open = libc.open
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_errno.py 15 libc = CDLL(libc_name, use_errno=True)
17 libc_open = libc._open
19 libc_open = libc.open
33 libc = CDLL(libc_name, use_errno=False)
35 libc_open = libc._open
37 libc_open = libc.open
  /bootable/recovery/mtdutils/
Android.mk 19 LOCAL_SHARED_LIBRARIES := libcutils liblog libc
  /development/build/
sdk-linux-x86.atree 21 lib64/libc++.so strip platform-tools/lib64/libc++.so
35 lib64/libc++.so strip build-tools/${PLATFORM_NAME}/lib64/libc++.so

Completed in 2406 milliseconds

12 3 4 5 6 7 8 91011>>