Home
last modified time | relevance | path

Searched refs:path (Results 1 – 25 of 107) sorted by relevance

12345

/ndk/sources/host-tools/make-3.81/
Dvpath.c51 static int selective_vpath_search PARAMS ((struct vpath *path, char **file, FILE_TIMESTAMP *mtime_p…
177 register struct vpath *path, *lastpath; in construct_vpath_list() local
180 path = vpaths; in construct_vpath_list()
181 while (path != 0) in construct_vpath_list()
183 struct vpath *next = path->next; in construct_vpath_list()
186 || (((percent == 0 && path->percent == 0) in construct_vpath_list()
187 || (percent - pattern == path->percent - path->pattern)) in construct_vpath_list()
188 && streq (pattern, path->pattern))) in construct_vpath_list()
192 vpaths = path->next; in construct_vpath_list()
197 free (path->pattern); in construct_vpath_list()
[all …]
/ndk/sources/android/libthread_db/gdb-6.6/
Dlibthread_db.c58 char path[64]; in _get_task_permitted_caps() local
67 snprintf(path, sizeof path, "/proc/%d/task/%d/status", pid, tid); in _get_task_permitted_caps()
68 fd = open(path, O_RDONLY); in _get_task_permitted_caps()
70 D("Could not open %s: %s\n", path, strerror(errno)); in _get_task_permitted_caps()
80 D("Could not read %s: %s\n", path, strerror(errno)); in _get_task_permitted_caps()
90 path, len, buff); in _get_task_permitted_caps()
99 D("Found CapPerm of %lld in %s\n", *cap, path); in _get_task_permitted_caps()
102 D("Cannot read CapPerm from %s: '%.*s'\n", path, 24, perm); in _get_task_permitted_caps()
131 char path[64]; in td_ta_new() local
157 snprintf(path, sizeof path, "/proc/%d/task", target_pid); in td_ta_new()
[all …]
/ndk/sources/android/libthread_db/gdb-7.3.x/
Dlibthread_db.c54 char path[64]; in _get_task_permitted_caps() local
63 snprintf(path, sizeof path, "/proc/%d/task/%d/status", pid, tid); in _get_task_permitted_caps()
64 fd = open(path, O_RDONLY); in _get_task_permitted_caps()
66 D("Could not open %s: %s\n", path, strerror(errno)); in _get_task_permitted_caps()
76 D("Could not read %s: %s\n", path, strerror(errno)); in _get_task_permitted_caps()
86 path, len, buff); in _get_task_permitted_caps()
95 D("Found CapPerm of %lld in %s\n", *cap, path); in _get_task_permitted_caps()
98 D("Cannot read CapPerm from %s: '%.*s'\n", path, 24, perm); in _get_task_permitted_caps()
128 char path[64]; in td_ta_new() local
154 snprintf(path, sizeof path, "/proc/%d/task", target_pid); in td_ta_new()
[all …]
/ndk/sources/host-tools/make-3.81/tests/
Dtest_driver.pl949 local ($path);
954 foreach $path (sort keys (%dirtree))
956 if ($dirtree {$path} =~ /^DIR$/)
958 mkdir ("$basedir/$path", 0777)
959 || &error ("Couldn't mkdir $basedir/$path: $!\n", 1);
961 elsif ($dirtree {$path} =~ /^FILE:(.*)$/)
963 &create_file ("$basedir/$path", $1 . "\n");
965 elsif ($dirtree {$path} =~ /^LINK:(.*)$/)
967 symlink ("$basedir/$1", "$basedir/$path")
968 || &error ("Couldn't symlink $basedir/$path -> $basedir/$1: $!\n", 1);
[all …]
/ndk/build/core/
Ddefault-build-commands.mk31 $(call host-path, $1) \
33 $(call host-path, $2 $(PRIVATE_LIBGCC) $4) \
69 --sysroot=$(call host-path,$(PRIVATE_SYSROOT_LINK)) \
73 -o $(call host-path,$(LOCAL_BUILT_MODULE))
80 --sysroot=$(call host-path,$(PRIVATE_SYSROOT_LINK)) \
84 -o $(call host-path,$(LOCAL_BUILT_MODULE))
88 $(PRIVATE_AR) $(call host-path,$(LOCAL_BUILT_MODULE)) $(PRIVATE_AR_OBJECTS)
94 cmd-strip = $(PRIVATE_STRIP) --strip-unneeded $(call host-path,$1)
Dsetup-imports.mk33 $(call import-add-path,$(__path))\
35 $(call import-add-path-optional,$(NDK_ROOT)/sources)
36 $(call import-add-path-optional,$(NDK_ROOT)/../development/ndk/sources)
Ddefinitions-host.mk31 host-path = $(if $(strip $1),$(call cygwin-to-host-path,$1))
33 host-path = $1
118 host-c-includes = $(patsubst %,-I%,$(call host-path,$1))
Dbuild-local.mk32 $(info Android NDK: NDK installation path auto-detected: '$(NDK_ROOT)')
35 $(info Android NDK: You NDK installation path contains spaces.)
135 $(call __ndk_info,Your Android application project path contains spaces: '$(NDK_PROJECT_PATH)')
145 $(call ndk_log,Found project path: $(NDK_PROJECT_PATH))
152 $(call ndk_log,Ouput path: $(NDK_APP_OUT))
Dprebuilt-library.mk39 prebuilt_path := $(call local-prebuilt-path,$(LOCAL_SRC_FILES))
44 $(call __ndk_info,Check that $(prebuilt_path) exists, or that its path is correct)
Dprebuilt-static-library.mk30 LOCAL_BUILT_MODULE := $(call local-prebuilt-path,$(LOCAL_SRC_FILES))
/ndk/sources/host-tools/make-3.81/w32/
Dpathstuff.c126 convert_path_to_nutc(char *path) in convert_path_to_nutc() argument
138 for (p = path, etok = strpbrk(p, ":;"), count = 0; in convert_path_to_nutc()
163 nutc_path_len = strlen(path) + (count*2) + 1; in convert_path_to_nutc()
173 for (p = path, etok = strpbrk(p, ":;"); in convert_path_to_nutc()
196 rval = savestring(path, strlen(path)); in convert_path_to_nutc()
219 nutc_path_len = strlen(path) + 3; in convert_path_to_nutc()
223 p = path; in convert_path_to_nutc()
237 rval = savestring(path, strlen(path)); in convert_path_to_nutc()
/ndk/
Dndk-gdb.py46 for path in PATHS:
47 if os.path.isdir(path):
49 full = path + os.sep + program + ext
50 if os.path.isfile(full):
88 NDK = os.path.abspath(os.path.dirname(sys.argv[0]))
207 if not os.path.isfile(ADB_CMD):
445 if not os.path.isfile(OPTION_EXEC):
457 if not os.path.isdir(PROJECT):
459 if not os.path.isfile(PROJECT+os.sep+MANIFEST):
464 if os.path.isfile(MANIFEST):
[all …]
/ndk/sources/host-tools/ndk-stack/elff/
Delf_file.cc81 ElfFile* ElfFile::Create(const char* path) { in Create() argument
87 assert(path != NULL && *path != '\0'); in Create()
88 if (path == NULL || *path == '\0') { in Create()
96 MapFile* file_handle = mapfile_open(path, O_RDONLY | O_BINARY, 0); in Create()
135 if (!ret->initialize(elf_hdr, path)) { in Create()
146 bool ElfFile::initialize(const Elf_CommonHdr* elf_hdr, const char* path) { in initialize() argument
156 size_t path_len = strlen(path) + 1; in initialize()
163 memcpy(elf_file_path_, path, path_len); in initialize()
328 const char* path) { in initialize() argument
330 if (!ElfFile::initialize(elf_hdr, path)) { in initialize()
Dmapfile.c33 mapfile_open(const char* path, int oflag, int share_mode) in mapfile_open() argument
82 HANDLE file_handle = CreateFile(path, win32_desired_access, win32_share, in mapfile_open()
88 int file_handle = open(path, oflag, share_mode); in mapfile_open()
/ndk/sources/host-tools/make-3.81/tests/scripts/features/
Descape16 $(path)foo : ; @echo "touch ($@)"
28 'path=pre:',
35 "'path=pre\\:'",
41 "'path=pre\\\\:'",
/ndk/sources/cxx-stl/stlport/stlport/stl/config/
D_native_headers.h18 # define _STLP_MAKE_HEADER(path, header) <path/header> argument
D_apple.h85 # define _STLP_MAKE_HEADER(path, header) <path:header> // Mac uses ":" for directory delimiter argument
/ndk/sources/cxx-stl/llvm-libc++/
DCMakeLists.txt15 # Add path for custom modules
26 build directory and run 'cmake /path/to/${PROJECT_NAME} [options]' there."
86 foreach(path ${LIBCXX_LIBSUPCXX_FILES})
89 if (EXISTS "${incpath}/${path}")
91 get_filename_component(dstdir ${path} PATH)
92 get_filename_component(file ${path} NAME)
96 "${incpath}/${path}"
98 MAIN_DEPENDENCY "${incpath}/${path}"
105 message(FATAL_ERROR "Failed to find ${path}")
/ndk/toolchains/x86-clang3.1/
Dsetup.mk48 -gcc-toolchain $(call host-path,$(TOOLCHAIN_PREBUILT_ROOT)) \
61 -gcc-toolchain $(call host-path,$(TOOLCHAIN_PREBUILT_ROOT)) \
/ndk/toolchains/x86-clang3.2/
Dsetup.mk48 -gcc-toolchain $(call host-path,$(TOOLCHAIN_PREBUILT_ROOT)) \
61 -gcc-toolchain $(call host-path,$(TOOLCHAIN_PREBUILT_ROOT)) \
/ndk/build/tools/
Dprebuilt-common.sh85 local path cur item
86 path=${1%%/} # remove trailing slash
88 if [ "$path" != "." ] ; then
89 for item in $(echo "$path" | tr '/' ' '); do
556 echo "ERROR: Could not find NDK sysroot path for $SYSROOT_SUFFIX."
557 echo " Use --sysroot=<path> to specify one."
563 echo "ERROR: Invalid sysroot path: $SYSROOT"
564 echo " Use --sysroot=<path> to indicate a valid one."
/ndk/toolchains/mipsel-linux-android-clang3.1/
Dsetup.mk52 -gcc-toolchain $(call host-path,$(TOOLCHAIN_PREBUILT_ROOT)) \
63 -gcc-toolchain $(call host-path,$(TOOLCHAIN_PREBUILT_ROOT)) \
/ndk/toolchains/mipsel-linux-android-clang3.2/
Dsetup.mk52 -gcc-toolchain $(call host-path,$(TOOLCHAIN_PREBUILT_ROOT)) \
63 -gcc-toolchain $(call host-path,$(TOOLCHAIN_PREBUILT_ROOT)) \
/ndk/sources/host-tools/make-3.81/tests/scripts/misc/
Dgeneral3156 # Test the slow path / no quotes
193 # Test the slow path / no quotes. This time we put the slow path
231 # Test the slow path / single quotes
276 # Test the slow path / double quotes
/ndk/sources/cxx-stl/llvm-libc++/src/support/solaris/
Dxlocale.c200 char *path; in newlocale() local
202 asprintf(&path, "/usr/lib/locale/%1$s/amd64/%1$s.so.3", locale); in newlocale()
204 asprintf(&path, "/usr/lib/locale/%1$s/%1$s.so.3", locale); in newlocale()
206 void *handle = dlopen(path, RTLD_LOCAL | RTLD_NOW); in newlocale()
207 free(path); in newlocale()

12345