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

  /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 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...]
  /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;
  /toolchain/binutils/binutils-2.25/ld/
ld.h 272 FILE *map_file; member in struct:__anon116350
  /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...]
  /external/protobuf/src/google/protobuf/
descriptor_unittest.cc 581 FileDescriptorProto map_file; local
582 map_file.set_name("map.proto");
583 DescriptorProto* message3 = AddMessage(&map_file, "TestMessage3");
630 map_file_ = pool_.BuildFile(map_file);
    [all...]

Completed in 600 milliseconds