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

  /external/libxkbcommon/xkbcommon/src/
utils.c 35 map_file(FILE *file, const char **string_out, size_t *size_out) function
64 map_file(FILE *file, const char **string_out, size_t *size_out) function
  /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);
  /system/update_engine/payload_generator/
squashfs_filesystem.cc 79 string map_file; local
81 utils::MakeTempFile("squashfs_file_map.XXXXXX", &map_file, nullptr));
82 ScopedPathUnlinker map_unlinker(map_file);
86 vector<string> cmd = {"unsquashfs", "-m", map_file, sqfs_path};
95 TEST_AND_RETURN_FALSE(utils::ReadFile(map_file, map));
  /bootable/recovery/uncrypt/
uncrypt.cpp 252 static int produce_block_map(const char* path, const char* map_file, const char* blk_dev,
255 if (!android::base::RemoveFileIfExists(map_file, &err)) {
256 LOG(ERROR) << "failed to remove the existing map file " << map_file << ": " << err;
259 std::string tmp_map_file = std::string(map_file) + ".tmp";
442 if (rename(tmp_map_file.c_str(), map_file) == -1) {
443 PLOG(ERROR) << "failed to rename " << tmp_map_file << " to " << map_file; local
447 std::string file_name = map_file;
465 static int uncrypt(const char* input_path, const char* map_file, const int socket) {
499 LOG(INFO) << "writing block map " << map_file;
500 return produce_block_map(path, map_file, blk_dev, encrypted, f2fs_fs, socket)
623 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) {
  /toolchain/binutils/binutils-2.27/ld/
ld.h 304 FILE *map_file; member in struct:__anon4946
  /external/selinux/libsemanage/src/
direct_api.c 565 * If the file is bzip compressed map_file will uncompress
569 static ssize_t map_file(semanage_handle_t *sh, const char *path, char **data, function
1067 if ((hll_data_len = map_file(sh, hll_path, &hll_data, &compressed)) <= 0) {
    [all...]
  /system/core/libbacktrace/
backtrace_test.cpp 939 FILE* map_file = fopen(buffer, "r"); local
940 ASSERT_TRUE(map_file != nullptr);
942 while (fgets(buffer, sizeof(buffer), map_file)) {
947 fclose(map_file);
    [all...]
  /system/extras/simpleperf/
environment.cpp 261 std::string map_file = android::base::StringPrintf("/proc/%d/maps", pid); local
262 FILE* fp = fopen(map_file.c_str(), "re");
264 PLOG(DEBUG) << "can't open file " << map_file;
  /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 355 milliseconds