Searched refs:tmp_dir (Results 1 – 5 of 5) sorted by relevance
/bionic/libc/tools/ |
D | ndk_missing_symbols.py | 31 tmp_dir = tempfile.mkdtemp() 32 adb_pull('/system/lib/libc.so', tmp_dir) 33 adb_pull('/system/lib/libm.so', tmp_dir) 36 device = (symbols.GetFromElf(os.path.join(tmp_dir, 'libc.so')) | 37 symbols.GetFromElf(os.path.join(tmp_dir, 'libm.so')))
|
/bionic/libc/bionic/ |
D | tmpfile.cpp | 53 static FILE* __tmpfile_dir_legacy(const char* tmp_dir) { in __tmpfile_dir_legacy() argument 55 if (asprintf(&path, "%s/tmp.XXXXXXXXXX", tmp_dir) == -1) { in __tmpfile_dir_legacy() 81 static FILE* __tmpfile_dir(const char* tmp_dir) { in __tmpfile_dir() argument 82 int fd = open(tmp_dir, O_TMPFILE | O_RDWR, S_IRUSR | S_IWUSR); in __tmpfile_dir() 83 if (fd == -1) return __tmpfile_dir_legacy(tmp_dir); in __tmpfile_dir()
|
/bionic/linker/ |
D | linker_config_test.cpp | 135 TemporaryDir tmp_dir; in run_linker_config_smoke_test() local 137 std::string executable_path = std::string(tmp_dir.path) + "/some-binary"; in run_linker_config_smoke_test() 138 std::string version_file = std::string(tmp_dir.path) + "/.version"; in run_linker_config_smoke_test() 251 TemporaryDir tmp_dir; in TEST() local 253 std::string executable_path = std::string(tmp_dir.path) + "/some-binary"; in TEST() 272 TemporaryDir tmp_dir; in TEST() local 274 std::string sub_dir = std::string(tmp_dir.path) + "/subdir"; in TEST() 280 std::string symlink_path = std::string(tmp_dir.path) + "/symlink"; in TEST()
|
/bionic/benchmarks/linker_relocation/ |
D | run_bench_with_ninja.sh | 115 tmp_dir=$(mktemp -d) 116 work_dir=$tmp_dir/linker-reloc-bench 124 (cd $tmp_dir; tar -c linker-reloc-bench/linker_reloc_bench_main linker-reloc-bench/*.so \ 153 rm -fr $tmp_dir
|
/bionic/tests/ |
D | stdlib_test.cpp | 67 void init(const char* tmp_dir) { in init() argument 68 snprintf(path, sizeof(path), "%s/TemporaryFile-XXXXXX", tmp_dir); in init()
|