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

  /external/chromium_org/third_party/webrtc/video_engine/
vie_file_image.cc 32 FILE* image_file = fopen(file_nameUTF8, "rb"); local
33 if (!image_file) {
36 if (fseek(image_file, 0, SEEK_END) != 0) {
37 fclose(image_file);
40 int buffer_size = ftell(image_file);
42 fclose(image_file);
46 if (fseek(image_file, 0, SEEK_SET) != 0) {
47 fclose(image_file);
52 image_buffer._size, image_file)) {
53 fclose(image_file);
    [all...]
  /external/qemu/android/filesystems/
partition_types.h 38 AndroidPartitionType androidPartitionType_probeFile(const char* image_file);
40 // Create or reset the file at |image_file| to be an empty partition of type
45 const char* image_file);
partition_types.cpp 55 AndroidPartitionType androidPartitionType_probeFile(const char* image_file) {
56 if (!path_exists(image_file)) {
59 if (android_pathIsExt4PartitionImage(image_file)) {
  /art/compiler/
image_test.cc 58 ScratchFile image_file(OS::CreateEmptyFile(image_filename.c_str()));
100 bool success_image = writer.Write(image_file.GetFilename(), requested_image_base,
108 std::unique_ptr<File> file(OS::OpenFileForReading(image_file.GetFilename().c_str()));
187 image_file.Unlink();
image_writer.cc 147 std::unique_ptr<File> image_file(OS::CreateEmptyFile(image_filename.c_str()));
149 if (image_file.get() == NULL) {
153 if (fchmod(image_file->Fd(), 0644) != 0) {
160 if (!image_file->WriteFully(image_->Begin(), image_end_)) {
167 if (!image_file->Write(reinterpret_cast<char*>(image_bitmap_->Begin()),
    [all...]
  /external/chromium_org/chrome/installer/test/
alternate_version_generator.cc 350 // Updates the version strings and numbers in all of |image_file|'s resources.
351 bool UpdateVersionIfMatch(const base::FilePath& image_file,
362 base::File file(image_file, flags);
368 LOG(WARNING) << "Failed to open \"" << image_file.value() << "\"."
371 file.Initialize(image_file, flags);
389 PLOG(DFATAL) << "Failed to open \"" << image_file.value() << "\"";
  /external/chromium_org/tools/mac/
symbolicate_crash.py 321 image_file = SYMBOL_IMAGE_MAP[image_name]
322 return os.path.join(base_path, image_file + '.dSYM', 'Contents',
324 os.path.splitext(image_file)[0]) # Chop off the extension.
  /external/qemu/
vl-android.c 1991 const char* image_file = NULL; local
    [all...]
  /art/runtime/gc/space/
image_space.cc 214 std::unique_ptr<File> image_file(OS::OpenFileForReading(filename));
215 if (image_file.get() == nullptr) {
218 const bool success = image_file->ReadFully(image_header, sizeof(ImageHeader));
  /external/chromium_org/net/base/
file_stream_unittest.cc 848 base::FilePath image_file = test_dir.Append(FILE_PATH_LITERAL("red.png")); local
852 base::FilePath path = file_util::InsertImageIntoMediaStore(image_file);
  /external/chromium_org/base/
file_util_unittest.cc 2517 FilePath image_file = data_dir.Append(FILE_PATH_LITERAL("red.png")); local
    [all...]

Completed in 1359 milliseconds