Searched refs:path (Results 1 - 25 of 69) sorted by relevance

123

/ndk/sources/cxx-stl/stlport/stlport/stl/config/
H A D_native_headers.h18 # define _STLP_MAKE_HEADER(path, header) <path/header>
H A D_apple.h85 # define _STLP_MAKE_HEADER(path, header) <path:header> // Mac uses ":" for directory delimiter
/ndk/sources/third_party/googletest/googletest/test/
H A Dgtest_xml_outfiles_test.py68 # We want the trailing '/' that the last "" provides in os.path.join, for
71 self.output_dir_ = os.path.join(gtest_test_utils.GetTempDir(),
80 os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_1_TEST + ".xml"))
84 os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_2_TEST + ".xml"))
112 output_file1 = os.path.join(self.output_dir_, output_file_name1)
114 output_file2 = os.path.join(self.output_dir_, output_file_name2)
115 self.assert_(os.path.isfile(output_file1) or os.path.isfile(output_file2),
119 if os.path.isfile(output_file1):
H A Dgtest_test_utils.py66 _flag_map = {'source_dir': os.path.dirname(sys.argv[0]),
67 'build_dir': os.path.dirname(sys.argv[0])}
112 """Returns the absolute path of the directory where the .py files are."""
114 return os.path.abspath(GetFlag('source_dir'))
118 """Returns the absolute path of the directory where the test binaries are."""
120 return os.path.abspath(GetFlag('build_dir'))
142 """Returns the absolute path of the test binary given its name.
153 The absolute path of the test binary.
156 path = os.path
[all...]
H A Dgtest_xml_output_unittest.py196 output_file = os.path.join(gtest_test_utils.GetTempDir(),
211 self.assert_(os.path.isfile(output_file))
219 xml_path = os.path.join(gtest_test_utils.GetTempDir(),
221 if os.path.isfile(xml_path):
240 self.assert_(not os.path.isfile(xml_path))
247 xml_path = os.path.join(gtest_test_utils.GetTempDir(),
H A Dgtest-options_test.cc62 // Turns the given relative path into an absolute path.
92 GTEST_FLAG(output) = "xml:path" GTEST_PATH_SEP_;
95 FilePath(std::string("path") + GTEST_PATH_SEP_ +
166 GTEST_FLAG(output) = "xml:path" GTEST_PATH_SEP_;
170 FilePath(std::string("path") + GTEST_PATH_SEP_ +
195 const std::string path = "c:\\tmp\\"; local
197 const std::string path = "/tmp/";
200 GTEST_FLAG(output) = "xml:" + path;
202 path
[all...]
/ndk/sources/host-tools/make-3.81/
H A Dvpath.c52 static int selective_vpath_search PARAMS ((struct vpath *path, char **file, FILE_TIMESTAMP *mtime_ptr));
101 /* Store the created path as the general path,
133 /* Store the created path as the GPATH,
152 separated by the path element separator (defined in make.h) are
179 register struct vpath *path, *lastpath;
182 path = vpaths;
183 while (path != 0)
185 struct vpath *next = path->next;
188 || (((percent == 0 && path
177 register struct vpath *path, *lastpath; local
282 struct vpath *path; local
372 selective_vpath_search(struct vpath *path, char **file, FILE_TIMESTAMP *mtime_ptr) argument
596 register char **path = general_vpath->searchpath; local
[all...]
/ndk/build/core/
H A Ddefinitions-host.mk22 # Function : host-path
23 # Arguments: 1: file path
24 # Returns : file path, as understood by the host file system
25 # Usage : $(call host-path,<path>)
31 host-path = $(if $(strip $1),$(call cygwin-to-host-path,$1))
33 host-path = $1
68 # Arguments: 1: directory path
69 # Usage : $(call host-mkdir,<path>
[all...]
H A Dsetup-imports.mk18 # Check the import path
33 $(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)
H A Ddefault-build-commands.mk23 # IMPORTANT: The result must use the host path convention.
31 $(call host-path, $1) \
33 $(call host-path, $2 $(PRIVATE_LIBGCC) $4) \
76 --sysroot=$(call host-path,$(PRIVATE_SYSROOT_LINK)) \
80 -o $(call host-path,$(LOCAL_BUILT_MODULE))
87 --sysroot=$(call host-path,$(PRIVATE_SYSROOT_LINK)) \
91 -o $(call host-path,$(LOCAL_BUILT_MODULE))
95 $(PRIVATE_AR) $(call host-path,$(LOCAL_BUILT_MODULE)) $(PRIVATE_AR_OBJECTS)
101 cmd-strip = $(PRIVATE_STRIP) --strip-unneeded $(call host-path,$1)
H A Dbuild-local.mk20 # Detect the NDK installation path by processing this Makefile's location.
28 # for the case when we're invoked from the NDK install path
32 $(info Android NDK: NDK installation path auto-detected: '$(NDK_ROOT)')
35 $(info Android NDK: You NDK installation path contains spaces.)
45 # path by looking at the manifest file in the current directory or
104 # current directory is the top of our project path. If this is the case, we
108 # path of the current directory the climb back the hierarchy until we find
133 # Check that there are no spaces in the project path, or bad things will happen
135 $(call __ndk_info,Your Android application project path contains spaces: '$(NDK_PROJECT_PATH)')
145 $(call ndk_log,Found project path
[all...]
/ndk/sources/android/libthread_db/gdb-6.6/
H A Dlibthread_db.c58 char path[64]; local
67 snprintf(path, sizeof path, "/proc/%d/task/%d/status", pid, tid);
68 fd = open(path, O_RDONLY);
70 D("Could not open %s: %s\n", path, strerror(errno));
80 D("Could not read %s: %s\n", path, strerror(errno));
90 path, len, buff);
99 D("Found CapPerm of %lld in %s\n", *cap, path);
102 D("Cannot read CapPerm from %s: '%.*s'\n", path, 24, perm);
131 char path[6 local
302 char path[32]; local
[all...]
/ndk/sources/android/libthread_db/gdb-7.3.x/
H A Dlibthread_db.c54 char path[64]; local
63 snprintf(path, sizeof path, "/proc/%d/task/%d/status", pid, tid);
64 fd = open(path, O_RDONLY);
66 D("Could not open %s: %s\n", path, strerror(errno));
76 D("Could not read %s: %s\n", path, strerror(errno));
86 path, len, buff);
95 D("Found CapPerm of %lld in %s\n", *cap, path);
98 D("Cannot read CapPerm from %s: '%.*s'\n", path, 24, perm);
128 char path[6 local
338 char path[32]; local
[all...]
/ndk/sources/android/libthread_db/gdb-7.6/
H A Dlibthread_db.c66 char path[64]; local
75 snprintf(path, sizeof path, "/proc/%d/task/%d/status", pid, tid);
76 fd = open(path, O_RDONLY);
78 D("Could not open %s: %s\n", path, strerror(errno));
88 D("Could not read %s: %s\n", path, strerror(errno));
98 path, len, buff);
107 D("Found CapPerm of %lld in %s\n", *cap, path);
110 D("Cannot read CapPerm from %s: '%.*s'\n", path, 24, perm);
140 char path[6 local
351 char path[32]; local
[all...]
/ndk/tests/build/multi-module-path/path1/foo/
H A DAndroid.mk1 # A simple module used to demonstrate multi-path NDK_MODULE_PATH imports.
/ndk/sources/host-tools/make-3.81/w32/
H A Dpathstuff.c43 * Convert delimiter separated path to Canonical format.
120 * _NutPathToNutc() fails to convert, just return the path we were handed
126 convert_path_to_nutc(char *path) argument
128 int count; /* count of path elements */
129 char *nutc_path; /* new NutC path */
130 int nutc_path_len; /* length of buffer to allocate for new path */
132 char *etok; /* token separator for old path */
133 char *p; /* points to element of old path */
134 char sep; /* what flavor of separator used in old path */
137 /* is this a multi-element path
[all...]
/ndk/sources/cxx-stl/gnu-libstdc++/
H A DAndroid.mk11 # Include path to export
29 LOCAL_EXPORT_LDLIBS := $(call host-path,$(LOCAL_PATH)/$(TOOLCHAIN_VERSION)/libs/$(TARGET_ARCH_ABI)/libsupc++$(TARGET_LIB_EXTENSION))
/ndk/tests/build/absolute-src-file-paths/jni/
H A DAndroid.mk12 ifeq (,$(call host-path-is-absolute,$(FOO_PATH)))
13 $(info FOO_PATH should be defined to an absolute path!)
/ndk/toolchains/llvm-3.2/
H A Dsetup-common.mk84 --sysroot=$(call host-path,$(PRIVATE_SYSROOT_LINK)) \
88 -o $(call host-path,$(LOCAL_BUILT_MODULE)) && \
93 --file $(call host-path, $(LOCAL_BUILT_MODULE)) $(patsubst %.bc,%.so,$(call host-path,$(LOCAL_BUILT_MODULE)))
100 --sysroot=$(call host-path,$(PRIVATE_SYSROOT_LINK)) \
104 -o $(call host-path,$(LOCAL_BUILT_MODULE)) && \
109 --file $(call host-path,$(LOCAL_BUILT_MODULE)) $(call host-path,$(LOCAL_BUILT_MODULE))
/ndk/toolchains/llvm-3.3/
H A Dsetup-common.mk84 --sysroot=$(call host-path,$(PRIVATE_SYSROOT_LINK)) \
88 -o $(call host-path,$(LOCAL_BUILT_MODULE)) && \
93 --file $(call host-path, $(LOCAL_BUILT_MODULE)) $(patsubst %.bc,%.so,$(call host-path,$(LOCAL_BUILT_MODULE)))
100 --sysroot=$(call host-path,$(PRIVATE_SYSROOT_LINK)) \
104 -o $(call host-path,$(LOCAL_BUILT_MODULE)) && \
109 --file $(call host-path,$(LOCAL_BUILT_MODULE)) $(call host-path,$(LOCAL_BUILT_MODULE))
/ndk/sources/host-tools/ndk-stack/elff/
H A Delf_file.cc81 ElfFile* ElfFile::Create(const char* path) { argument
87 assert(path != NULL && *path != '\0');
88 if (path == NULL || *path == '\0') {
96 MapFile* file_handle = mapfile_open(path, O_RDONLY | O_BINARY, 0);
135 if (!ret->initialize(elf_hdr, path)) {
146 bool ElfFile::initialize(const Elf_CommonHdr* elf_hdr, const char* path) { argument
155 /* Copy file path. */
156 size_t path_len = strlen(path)
327 initialize(const Elf_CommonHdr* elf_hdr, const char* path) argument
[all...]
H A Dmapfile.h47 * path - Path to the file to open.
56 extern MapFile* mapfile_open(const char* path, int oflag, int share_mode);
/ndk/
H A DGNUmakefile26 # Find the NDK root installation path, should be this file's location.
30 # Complain if the path contains spaces
32 $(info,The Android NDK installation path contains spaces: '$(NDK_ROOT)')
H A 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):
54 # Return the prebuilt bin path for the host os.
96 NDK = os.path.abspath(os.path.dirname(sys.argv[0])).replace('\\','/')
150 help='Specify application project path',
196 if os.path
[all...]
/ndk/sources/host-tools/make-3.81/tests/
H A Dtest_driver.pl810 # rm, if the path ends in /, leaves the (now empty) directory; otherwise
949 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")
[all...]

Completed in 366 milliseconds

123