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

  /external/libmojo/base/android/
content_uri_utils_unittest.cc 20 FilePath image_file = data_dir.Append(FILE_PATH_LITERAL("red.png")); local
24 FilePath path = base::InsertImageIntoMediaStore(image_file);
  /external/vboot_reference/utility/
load_kernel_test.c 32 static FILE *image_file = NULL; variable
47 fseek(image_file, lba_start * lkp.bytes_per_lba, SEEK_SET);
48 if (1 != fread(buffer, lba_count * lkp.bytes_per_lba, 1, image_file)) {
70 fseek(image_file, lba_start * lkp.bytes_per_lba, SEEK_SET);
71 if (1 != fwrite(buffer, lba_count * lkp.bytes_per_lba, 1, image_file)) {
201 image_file = fopen(image_name, "rb");
202 if (!image_file) {
206 fseek(image_file, 0, SEEK_END);
207 lkp.streaming_lba_count = (ftell(image_file) / LBA_BYTES);
209 rewind(image_file);
    [all...]
  /external/autotest/client/cros/
cros_disks.py 574 def image_file(self): member in class:VirtualFilesystemImage
  /art/compiler/
image_writer.cc 200 std::unique_ptr<File> image_file; local
203 image_file.reset(new File(image_fd, unix_file::kCheckSafeUsage));
205 if (image_file != nullptr) {
206 TEMP_FAILURE_RETRY(image_file->SetLength(0));
207 TEMP_FAILURE_RETRY(image_file->Flush());
213 image_file.reset(OS::CreateEmptyFile(image_filename));
216 if (image_file == nullptr) {
221 if (!compile_app_image_ && fchmod(image_file->Fd(), 0644) != 0) {
223 image_file->Erase();
292 if (!image_file->PwriteFully(image_data_to_write, data_size, sizeof(ImageHeader)))
    [all...]

Completed in 541 milliseconds