/external/ltp/testcases/kernel/syscalls/nftw/ |
test_func.c | 41 test_func1(const char *path_name, const struct stat *stat_pointer, 49 if ((s = malloc((size_t)(strlen((char *)path_name) + 1))) 55 if ((p = strstr(path_name, NFTW)) != NULL) { 58 p = path_name; 65 fprintf(temp, "INFO: Call to fn() at %s\n", path_name); 76 test_func3(const char *path_name, const struct stat *stat_pointer, 82 fprintf(temp, "INFO: Call to fn() at %s\n", path_name); 90 if (strcmp(path_name, "./tmp/data/dirl/dir_right.1/dir_right.2/right.3") 101 test_func4(const char *path_name, const struct stat *stat_pointer, 105 do_info(path_name); [all...] |
test_func64.c | 41 test_func1(const char *path_name, const struct stat64 *stat_pointer, 48 if ((s = malloc((size_t)(strlen((char *)path_name) + 1))) 54 if ((p = strstr(path_name, NFTW)) != NULL) { 57 p = path_name; 64 fprintf(temp, "INFO: Call to fn() at %s\n", path_name); 75 test_func3(const char *path_name, const struct stat64 *stat_pointer, 81 fprintf(temp, "INFO: Call to fn() at %s\n", path_name); 89 if (strcmp(path_name, "./tmp/data/dirl/dir_right.1/dir_right.2/right.3") 100 test_func4(const char *path_name, const struct stat64 *stat_pointer, 104 do_info(path_name); [all...] |
tools.c | 250 void do_info(const char *path_name) 254 fprintf(temp, "INFO: Call to fn() at %s\n", path_name);
|
tools64.c | 250 void do_info(const char *path_name) 254 fprintf(temp, "INFO: Call to fn() at %s\n", path_name);
|
/external/valgrind/tests/ |
check_headers_and_includes | 153 my $path_name = defined $path ? "$path/$file" : $file; 154 process_file($path_name); 164 my ($path_name) = @_; 166 return ($path_name =~ /^include\//) ? 1 : 0; 173 my ($path_name) = @_; 175 return ($path_name =~ /^coregrind\//) ? 1 : 0; 182 my ($path_name) = @_; 185 return 1 if ($path_name =~ /^$tool\//); 194 my ($path_name) = @_; 196 my $file = basename($path_name); [all...] |
/frameworks/compile/mclinker/lib/Support/ |
RealPath.cpp | 45 Path path_name; local 46 detail::get_pwd(path_name); 47 path_name.native() += preferred_separator; 48 path_name.native() += m_PathName; 49 detail::canonicalize(path_name.native()); 50 m_PathName = path_name.native();
|
/external/ltp/testcases/kernel/syscalls/mount/ |
mount06.c | 55 static char path_name[PATH_MAX]; variable 134 if (getcwd(path_name, sizeof(path_name)) == NULL) 141 if (mount(path_name, path_name, "none", MS_BIND, NULL) == -1) 146 if (mount("none", path_name, "none", MS_PRIVATE, NULL) == -1) 149 snprintf(mntpoint_src, PATH_MAX, "%s/%s", path_name, MNTPOINT_SRC); 150 snprintf(mntpoint_des, PATH_MAX, "%s/%s", path_name, MNTPOINT_DES); 160 if (mount_flag && tst_umount(path_name) != 0) 161 tst_resm(TWARN | TERRNO, "umount(2) %s failed", path_name); [all...] |
mount03.c | 70 static char path_name[PATH_MAX]; variable 141 snprintf(file, PATH_MAX, "%stmp", path_name); 157 snprintf(file, PATH_MAX, "%smynod_%d_%d", path_name, getpid(), 180 snprintf(file, PATH_MAX, "%stmp1", path_name); 200 snprintf(file, PATH_MAX, "%s%s", path_name, TEMP_FILE); 250 snprintf(file, PATH_MAX, "%stmp2", path_name); 264 snprintf(file, PATH_MAX, "%ssetuid_test", path_name); 302 snprintf(file, PATH_MAX, "%satime", path_name); 363 if (getcwd(path_name, sizeof(path_name)) == NULL [all...] |
/system/media/camera/docs/ |
camera_metadata_tag_info.mako | 36 ${"[%s]" %(path_name(i)) | csym,pad(36)} = "${path_name(i)}", 42 ${"[%s]" %(path_name(i)) | csym,pad(36)} = { ${path_name(i) | csym}_START, 43 ${path_name(i) | csym}_END }, 48 static tag_info_t ${path_name(sec) | csyml}[${path_name(sec) | csym}_END - 49 ${path_name(sec) | csym}_START] = { 51 [ ${entry.name | csym} - ${path_name(sec) | csym}_START ] = 60 ${path_name(i) | csyml} [all...] |
ndk_camera_metadata_tags.mako | 53 ${ndk(path_name(i)) | csym}, 65 ${ndk(path_name(i)) + '.start' | csym,ljust(30)} = ${ndk(path_name(i)) | csym,pad(64)} << 16, 109 ${ndk(path_name(find_parent_section(entry))) | csym}_START, 111 ${ndk(path_name(find_parent_section(entry))) | csym}_START + ${idx}, 115 ${ndk(path_name(sec)) | csym}_END,
|
camera_metadata_tags.mako | 52 ${path_name(i) | csym}, 65 ${path_name(i) + '.start' | csym,ljust(30)} = ${path_name(i) | csym,pad(64)} << 16, 81 ${path_name(find_parent_section(entry)) | csym}_START, 86 ${path_name(sec) | csym}_END,
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
runpy.py | 185 def _get_importer(path_name):
189 importer = cache[path_name]
194 cache[path_name] = None
197 importer = hook(path_name)
207 importer = imp.NullImporter(path_name)
210 cache[path_name] = importer
223 def run_path(path_name, init_globals=None, run_name=None):
235 importer = _get_importer(path_name)
239 code = _get_code_from_file(path_name)
240 return _run_module_code(code, init_globals, run_name, path_name)
[all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
runpy.py | 185 def _get_importer(path_name):
189 importer = cache[path_name]
194 cache[path_name] = None
197 importer = hook(path_name)
207 importer = imp.NullImporter(path_name)
210 cache[path_name] = importer
223 def run_path(path_name, init_globals=None, run_name=None):
235 importer = _get_importer(path_name)
239 code = _get_code_from_file(path_name)
240 return _run_module_code(code, init_globals, run_name, path_name)
[all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
runpy.py | 185 def _get_importer(path_name): 189 importer = cache[path_name] 194 cache[path_name] = None 197 importer = hook(path_name) 207 importer = imp.NullImporter(path_name) 210 cache[path_name] = importer 223 def run_path(path_name, init_globals=None, run_name=None): 235 importer = _get_importer(path_name) 239 code = _get_code_from_file(path_name) 240 return _run_module_code(code, init_globals, run_name, path_name) [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
runpy.py | 185 def _get_importer(path_name): 189 importer = cache[path_name] 194 cache[path_name] = None 197 importer = hook(path_name) 207 importer = imp.NullImporter(path_name) 210 cache[path_name] = importer 223 def run_path(path_name, init_globals=None, run_name=None): 235 importer = _get_importer(path_name) 239 code = _get_code_from_file(path_name) 240 return _run_module_code(code, init_globals, run_name, path_name) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
runpy.py | 185 def _get_importer(path_name): 189 importer = cache[path_name] 194 cache[path_name] = None 197 importer = hook(path_name) 207 importer = imp.NullImporter(path_name) 210 cache[path_name] = importer 223 def run_path(path_name, init_globals=None, run_name=None): 235 importer = _get_importer(path_name) 239 code = _get_code_from_file(path_name) 240 return _run_module_code(code, init_globals, run_name, path_name) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
runpy.py | 185 def _get_importer(path_name): 189 importer = cache[path_name] 194 cache[path_name] = None 197 importer = hook(path_name) 207 importer = imp.NullImporter(path_name) 210 cache[path_name] = importer 223 def run_path(path_name, init_globals=None, run_name=None): 235 importer = _get_importer(path_name) 239 code = _get_code_from_file(path_name) 240 return _run_module_code(code, init_globals, run_name, path_name) [all...] |
/external/pdfium/core/fxge/win32/ |
cfx_windowsdib.h | 23 const FX_WCHAR* path_name; member in struct:WINDIB_Open_Args_
|
/frameworks/compile/mclinker/unittests/ |
FactoriesTest.cpp | 179 char path_name[100]; local 180 sprintf(path_name, "/proj/mtk%d", counter); 182 string(name), sys::fs::Path(string(path_name)), MCLDFile::Archive); 195 char path_name[100]; local 196 sprintf(path_name, "/proj/mtk%d", counter); 198 string(name), sys::fs::Path(string(path_name)), MCLDFile::Archive);
|
/external/vixl/tools/ |
util.py | 62 def ensure_dir(path_name): 63 if not os.path.exists(path_name): 64 os.makedirs(path_name)
|
/external/chromium-trace/catapult/dependency_manager/dependency_manager/ |
dependency_manager_util.py | 31 def ResolvePath(path_name): 32 return os.path.realpath(os.path.abspath(path_name))
|
/external/libchrome/base/files/ |
file_path_watcher_kqueue.cc | 114 std::string path_name; local 118 path_name = event_data->path_.value(); 121 if (path_name.empty()) { 122 path_name = base::StringPrintf( 125 DLOG(ERROR) << "Error: " << kevents[i].data << " for " << path_name;
|
/frameworks/base/services/core/jni/ |
com_android_server_fingerprint_FingerprintService.cpp | 191 char path_name[PATH_MAX] = {0}; local 192 memcpy(path_name, pathData, pathSize); 193 ALOG(LOG_VERBOSE, LOG_TAG, "nativeSetActiveGroup() path: %s, gid: %d\n", path_name, gid); 194 int result = gContext.device->set_active_group(gContext.device, gid, path_name);
|
/external/google-breakpad/src/client/windows/unittests/ |
exception_handler_nesting_test.cc | 52 bool DoesPathExist(const wchar_t *path_name) { 53 DWORD flags = GetFileAttributes(path_name);
|
exception_handler_death_test.cc | 55 BOOL DoesPathExist(const TCHAR *path_name); 95 BOOL DoesPathExist(const TCHAR *path_name) { 96 DWORD flags = GetFileAttributes(path_name);
|