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

1 2

  /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...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
rgn-over.exp 35 set map_file "tmpdir/[file tail $test_name].map"
41 if [file exists $map_file] {
44 if [regexp_diff $map_file $test_file] {
include.exp 35 set map_file "tmpdir/[file tail $test_name].map"
rgn-at.exp 30 set map_file "tmpdir/[file tail $test_name].map"
  /external/libchrome/sandbox/linux/services/
namespace_utils.h 25 // Write a uid or gid mapping from |id| to |id| in |map_file|. This function
27 static bool WriteToIdMapFile(const char* map_file,
namespace_utils.cc 36 bool NamespaceUtils::WriteToIdMapFile(const char* map_file, generic_id_t id) {
40 int fd = HANDLE_EINTR(open(map_file, O_WRONLY));
  /external/google-breakpad/src/processor/
source_line_resolver_base.cc 88 bool SourceLineResolverBase::ReadSymbolFile(const string &map_file,
97 int error_code = stat(map_file.c_str(), &buf);
101 BPLOG(ERROR) << "Could not open " << map_file <<
114 BPLOG(ERROR) << "Could not allocate memory for " << map_file;
118 BPLOG(INFO) << "Opening " << map_file;
120 FILE *f = fopen(map_file.c_str(), "rt");
124 BPLOG(ERROR) << "Could not open " << map_file <<
140 BPLOG(ERROR) << "Could not slurp " << map_file <<
152 const string &map_file) {
164 << " from " << map_file;
    [all...]
  /external/google-breakpad/src/google_breakpad/processor/
source_line_resolver_interface.h 60 // map_file should contain line/address mappings for this module.
62 const string &map_file) = 0;
source_line_resolver_base.h 77 virtual bool LoadModule(const CodeModule *module, const string &map_file);
  /toolchain/binutils/binutils-2.25/binutils/
nlmconv.h 57 extern char *map_file;
nlmheader.y 60 char *map_file;
248 map_file = "";
253 map_file = $2;
274 map_file = "";
278 map_file = $2;
  /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...]
  /toolchain/binutils/binutils-2.25/ld/
ldexp.c 123 fputc (' ', config.map_file);
126 fputs (table[idx].name, config.map_file);
128 fputc (code, config.map_file);
130 fprintf (config.map_file, "<code %d>", code);
133 fputc (' ', config.map_file);
    [all...]
ldmisc.c 480 if (config.map_file != NULL)
500 vfinfo (config.map_file, fmt, arg, FALSE);
521 fprintf (config.map_file, " ");
527 fprintf (config.map_file, "\n");
ld.h 272 FILE *map_file; member in struct:__anon75806
ldmain.c 412 config.map_file = stdout;
416 config.map_file = fopen (config.map_filename, FOPEN_WT);
417 if (config.map_file == (FILE *) NULL)
437 if (config.map_file != NULL)
440 output_cref (config.map_file != NULL ? config.map_file : stdout);
830 if (config.map_file != NULL)
    [all...]
ldctor.c 331 if (config.map_file != NULL)
ldlang.c     [all...]
  /external/google-breakpad/src/common/windows/
pdb_source_line_writer.h 115 bool WriteMap(FILE *map_file);
  /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);
  /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;
  /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) {
  /external/v8/tools/gyp/pylib/gyp/
msvs_emulation.py 377 map_file = self._Setting(('VCLinkerTool', 'MapFileName'), config)
378 if map_file:
379 map_file = expand_special(self.ConvertVSMacros(map_file, config=config))
380 return map_file
583 map_file = self.GetMapFileName(config, expand_special)
584 ld('GenerateMapFile', map={'true': '/MAP:' + map_file if map_file
    [all...]
  /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);
  /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 1774 milliseconds

1 2