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

1 2

  /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 26 // Write a uid or gid mapping from |id| to |id| in |map_file|. This function
28 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 246 static int produce_block_map(const char* path, const char* map_file, const char* blk_dev,
249 if (!android::base::RemoveFileIfExists(map_file, &err)) {
250 LOG(ERROR) << "failed to remove the existing map file " << map_file << ": " << err;
253 std::string tmp_map_file = std::string(map_file) + ".tmp";
425 if (rename(tmp_map_file.c_str(), map_file) == -1) {
426 PLOG(ERROR) << "failed to rename " << tmp_map_file << " to " << map_file; local
430 std::string file_name = map_file;
448 static int uncrypt(const char* input_path, const char* map_file, const int socket) {
481 LOG(INFO) << "writing block map " << map_file;
482 return produce_block_map(path, map_file, blk_dev, encrypted, socket)
605 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:__anon116350
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);
pdb_source_line_writer.cc     [all...]
  /external/compiler-rt/lib/profile/
GCDAProfiling.c 215 static int map_file() { function
225 MAP_FILE | MAP_SHARED, fd, 0);
302 if (map_file() == -1) {
  /system/extras/simpleperf/
environment.cpp 271 std::string map_file = android::base::StringPrintf("/proc/%d/maps", pid); local
272 FILE* fp = fopen(map_file.c_str(), "re");
274 PLOG(DEBUG) << "can't open file " << map_file;
  /build/soong/cc/
gen_stub_libs.py 412 with open(args.api_map) as map_file:
413 api_map = json.load(map_file)
  /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);
  /external/selinux/libsemanage/src/
direct_api.c 530 * If the file is bzip compressed map_file will uncompress
534 static ssize_t map_file(semanage_handle_t *sh, const char *path, char **data, function
1032 if ((hll_data_len = map_file(sh, hll_path, &hll_data, &compressed)) <= 0) {
    [all...]
  /system/core/libbacktrace/
backtrace_test.cpp 890 FILE* map_file = fopen(buffer, "r"); local
891 ASSERT_TRUE(map_file != nullptr);
893 while (fgets(buffer, sizeof(buffer), map_file)) {
898 fclose(map_file);
    [all...]

Completed in 1349 milliseconds

1 2