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

  /external/chromium_org/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...]
  /bootable/recovery/uncrypt/
uncrypt.c 193 int produce_block_map(const char* path, const char* map_file, const char* blk_dev,
199 int mapfd = open(map_file, O_WRONLY | O_CREAT | O_SYNC, S_IRUSR | S_IWUSR);
201 ALOGE("failed to open %s\n", map_file);
365 const char* map_file; local
369 fprintf(stderr, "usage: %s [<transform_path> <map_file>]\n", argv[0]);
377 map_file = argv[2];
389 map_file = CACHE_BLOCK_MAP;
430 ALOGI("writing block map %s", map_file);
431 if (produce_block_map(path, map_file, blk_dev, encrypted) != 0) {
  /external/chromium_org/chrome/browser/metrics/variations/
generate_resources_map.py 168 def main(resources_file, map_file):
178 with open(map_file, "w") as generated_file:
  /external/chromium_org/tools/android/heap_profiler/
heap_dump.c 78 char map_file[32]; local
80 &start, &end, map_file);
82 if (ret != 3 || strcmp(map_file, "/dev/zero") != 0 || size < sizeof(stats))
  /external/chromium_org/sandbox/linux/services/
credentials.cc 76 // Write a uid or gid mapping from |id| to |id| in |map_file|.
77 bool WriteToIdMapFile(const char* map_file, generic_id_t id) {
78 ScopedFILE f(fopen(map_file, "w"));
  /external/chromium_org/tools/gyp/pylib/gyp/
msvs_emulation.py 348 map_file = self._Setting(('VCLinkerTool', 'MapFileName'), config)
349 if map_file:
350 map_file = expand_special(self.ConvertVSMacros(map_file, config=config))
351 return map_file
537 map_file = self.GetMapFileName(config, expand_special)
538 ld('GenerateMapFile', map={'true': '/MAP:' + map_file if map_file
    [all...]
  /system/core/run-as/
package.c 77 map_file(const char* filename, size_t* filesize) function
435 buffer = map_file(PACKAGES_LIST_FILE, &buffer_len);
  /external/compiler-rt/lib/profile/
GCDAProfiling.c 226 static int map_file() { function
236 MAP_FILE | MAP_SHARED, fd, 0);
308 if (map_file() == -1) {
  /system/core/libbacktrace/
backtrace_test.cpp 771 FILE* map_file = fopen(buffer, "r"); local
772 ASSERT_TRUE(map_file != NULL);
774 while (fgets(buffer, sizeof(buffer), map_file)) {
779 fclose(map_file);
  /external/elfutils/0.153/src/
strings.c 461 map_file (int fd, off64_t start_off, off64_t fdlen, size_t *map_sizep) function
585 elfmap_base = elfmap = map_file (fd, elfmap_off, fdlen, &elfmap_size);

Completed in 182 milliseconds