HomeSort by relevance Sort by last modified time
    Searched defs:map_file (Results 1 - 10 of 10) sorted by null

  /external/v8/tools/gyp/test/win/
gyptest-link-mapfile.py 22 map_file = test.built_file_path('test_mapfile_unset.map', chdir=CHDIR) variable
23 test.must_not_exist(map_file)
25 map_file = test.built_file_path('test_mapfile_generate.map', chdir=CHDIR) variable
26 test.must_exist(map_file)
27 test.must_contain(map_file, '?AnExportedFunction@@YAXXZ')
28 test.must_not_contain(map_file, 'void __cdecl AnExportedFunction(void)')
30 map_file = test.built_file_path('test_mapfile_generate_exports.map', variable
32 test.must_exist(map_file)
33 test.must_contain(map_file, 'void __cdecl AnExportedFunction(void)')
35 map_file = test.built_file_path('test_mapfile_generate_filename.map' variable
39 map_file = test.built_file_path('custom_file_name.map', chdir=CHDIR) variable
    [all...]
  /system/core/run-as/
package.c 80 map_file(const char* filename, size_t* filesize) function
442 buffer = map_file(PACKAGES_LIST_FILE, &buffer_len);
  /external/elfutils/src/
strings.c 470 map_file (int fd, off_t start_off, off_t fdlen, size_t *map_sizep) function
586 elfmap_base = elfmap = map_file (fd, elfmap_off, fdlen, &elfmap_size);
  /bootable/recovery/uncrypt/
uncrypt.cpp 234 static int produce_block_map(const char* path, const char* map_file, const char* blk_dev,
237 if (!android::base::RemoveFileIfExists(map_file, &err)) {
238 ALOGE("failed to remove the existing map file %s: %s", map_file, err.c_str());
241 std::string tmp_map_file = std::string(map_file) + ".tmp";
395 if (rename(tmp_map_file.c_str(), map_file) == -1) {
396 ALOGE("failed to rename %s to %s: %s", tmp_map_file.c_str(), map_file, strerror(errno));
400 std::string file_name = map_file;
419 static int uncrypt(const char* input_path, const char* map_file, const int socket) {
452 ALOGI("writing block map %s", map_file);
453 return produce_block_map(path, map_file, blk_dev, encrypted, socket)
576 const char* map_file = CACHE_BLOCK_MAP.c_str(); local
    [all...]
  /external/compiler-rt/lib/profile/
GCDAProfiling.c 205 static int map_file() { function
215 MAP_FILE | MAP_SHARED, fd, 0);
292 if (map_file() == -1) {
  /system/extras/simpleperf/
environment.cpp 329 std::string map_file = android::base::StringPrintf("/proc/%d/maps", pid); local
330 FILE* fp = fopen(map_file.c_str(), "re");
332 PLOG(DEBUG) << "can't open file " << map_file;
  /toolchain/binutils/binutils-2.25/ld/
ld.h 272 FILE *map_file; member in struct:__anon75806
  /external/selinux/libsemanage/src/
direct_api.c 502 * If the file is bzip compressed map_file will uncompress
506 static ssize_t map_file(semanage_handle_t *sh, const char *path, char **data, function
962 if ((hll_data_len = map_file(sh, hll_path, &hll_data, &compressed)) <= 0) {
    [all...]
  /system/core/libbacktrace/
backtrace_test.cpp 885 FILE* map_file = fopen(buffer, "r"); local
886 ASSERT_TRUE(map_file != nullptr);
888 while (fgets(buffer, sizeof(buffer), map_file)) {
893 fclose(map_file);
    [all...]
  /art/imgdiag/
imgdiag.cc 297 auto map_file = std::unique_ptr<File>(OS::OpenFileForReading(file_name.c_str())); local
298 if (map_file == nullptr) {
339 if (!map_file->PreadFully(&remote_contents[0], boot_map_size, boot_map.start)) {
    [all...]

Completed in 2536 milliseconds