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

  /external/e2fsprogs/ext2ed/
file_com.c 30 file_info.inode_ptr=ptr;
31 file_info.inode_offset=device_offset;
33 file_info.global_block_num=ptr->i_block [0];
34 file_info.global_block_offset=ptr->i_block [0]*file_system_info.block_size;
35 file_info.block_num=0;
36 file_info.blocks_count=(ptr->i_size+file_system_info.block_size-1)/file_system_info.block_size;
37 file_info.file_offset=0;
38 file_info.file_length=ptr->i_size;
39 file_info.level=0;
40 file_info.offset_in_block=0
    [all...]
dir_com.c 13 Most of the functions use the global variable file_info (along with the special directory fields there) to save
223 dir_entry_ptr=(struct ext2_dir_entry_2 *) (file_info.buffer+file_info.dir_entry_offset);
259 status=FOUND;info=file_info;
263 file_info=info; /* Switch to it, by setting the global file_info */
357 if (entry_num_search < 0 || entry_num_search >= file_info.dir_entries_count) {
364 file_info=info;
402 low_read (file_info.buffer,file_system_info.block_size,file_info.global_block_offset)
    [all...]
ext2ed.h 216 extern struct struct_file_info file_info,first_file_info;
main.c 81 struct struct_file_info file_info,first_file_info; /* Used by file_com.c to access files */ variable in typeref:struct:struct_file_info
inode_com.c 364 file_info=first_file_info;
  /external/zlib/contrib/minizip/
miniunz.c 236 unz_file_info64 file_info; local
240 err = unzGetCurrentFileInfo64(uf,&file_info,filename_inzip,sizeof(filename_inzip),NULL,0,NULL,0);
246 if (file_info.uncompressed_size>0)
247 ratio = (uLong)((file_info.compressed_size*100)/file_info.uncompressed_size);
250 if ((file_info.flag & 1) != 0)
253 if (file_info.compression_method==0)
256 if (file_info.compression_method==Z_DEFLATED)
258 uInt iLevel=(uInt)((file_info.flag & 0x6)/2);
267 if (file_info.compression_method==Z_BZIP2ED
313 unz_file_info64 file_info; local
    [all...]
unzip.c 891 unz_file_info64 file_info; local
916 if (unz64local_getShort(&s->z_filefunc, s->filestream,&file_info.version) != UNZ_OK)
919 if (unz64local_getShort(&s->z_filefunc, s->filestream,&file_info.version_needed) != UNZ_OK)
922 if (unz64local_getShort(&s->z_filefunc, s->filestream,&file_info.flag) != UNZ_OK)
925 if (unz64local_getShort(&s->z_filefunc, s->filestream,&file_info.compression_method) != UNZ_OK)
928 if (unz64local_getLong(&s->z_filefunc, s->filestream,&file_info.dosDate) != UNZ_OK)
931 unz64local_DosDateToTmuDate(file_info.dosDate,&file_info.tmu_date);
933 if (unz64local_getLong(&s->z_filefunc, s->filestream,&file_info.crc) != UNZ_OK)
938 file_info.compressed_size = uL
    [all...]
  /external/chromium/third_party/zlib/contrib/minizip/
miniunz.c 183 unz_file_info file_info; local
187 err = unzGetCurrentFileInfo(uf,&file_info,filename_inzip,sizeof(filename_inzip),NULL,0,NULL,0);
193 if (file_info.uncompressed_size>0)
194 ratio = (file_info.compressed_size*100)/file_info.uncompressed_size;
197 if ((file_info.flag & 1) != 0)
200 if (file_info.compression_method==0)
203 if (file_info.compression_method==Z_DEFLATED)
205 uInt iLevel=(uInt)((file_info.flag & 0x6)/2);
217 file_info.uncompressed_size,string_method
255 unz_file_info file_info; local
    [all...]
unzip.c 598 unz_file_info file_info; local
621 if (unzlocal_getShort(&s->z_filefunc, s->filestream,&file_info.version) != UNZ_OK)
624 if (unzlocal_getShort(&s->z_filefunc, s->filestream,&file_info.version_needed) != UNZ_OK)
627 if (unzlocal_getShort(&s->z_filefunc, s->filestream,&file_info.flag) != UNZ_OK)
630 if (unzlocal_getShort(&s->z_filefunc, s->filestream,&file_info.compression_method) != UNZ_OK)
633 if (unzlocal_getLong(&s->z_filefunc, s->filestream,&file_info.dosDate) != UNZ_OK)
636 unzlocal_DosDateToTmuDate(file_info.dosDate,&file_info.tmu_date);
638 if (unzlocal_getLong(&s->z_filefunc, s->filestream,&file_info.crc) != UNZ_OK)
641 if (unzlocal_getLong(&s->z_filefunc, s->filestream,&file_info.compressed_size) != UNZ_OK
    [all...]
  /external/chromium/net/url_request/
url_request_file_job.cc 46 file_util::FileInfo file_info; local
47 bool exists = file_util::GetFileInfo(file_path, &file_info);
51 this, &AsyncResolver::ReturnResults, exists, file_info));
67 void ReturnResults(bool exists, const file_util::FileInfo& file_info) {
69 owner_->DidResolve(exists, file_info);
120 file_util::FileInfo file_info; local
121 bool exists = file_util::GetFileInfo(file_path_, &file_info);
125 this, &URLRequestFileJob::DidResolve, exists, file_info));
208 bool exists, const file_util::FileInfo& file_info) {
223 if (!exists || file_info.is_directory)
    [all...]
url_request_file_job.h 44 void DidResolve(bool exists, const file_util::FileInfo& file_info);
  /external/blktrace/btt/
misc.c 34 struct file_info { struct
54 struct file_info *fip = list_entry(p, struct file_info, head);
120 struct file_info *fip = malloc(sizeof(*fip));
  /external/chromium/base/
file_util_posix.cc 135 stat_wrapper_t file_info; local
136 int test = CallStat(path_str, &file_info);
142 if (!S_ISDIR(file_info.st_mode))
303 stat_wrapper_t file_info; local
304 return CallStat(path.value().c_str(), &file_info) == 0;
309 stat_wrapper_t file_info; local
310 if (CallStat(test_path.value().c_str(), &file_info) != 0)
312 if (S_IWOTH & file_info.st_mode)
314 if (getegid() == file_info.st_gid && (S_IWGRP & file_info.st_mode)
322 stat_wrapper_t file_info; local
452 stat_wrapper_t file_info; local
    [all...]
  /external/qemu/elff/
dwarf_cu.cc 744 const Dwarf_STMTL_FileDesc* file_info = state->set_file_info_; local
745 if (file_info == NULL) {
746 file_info = get_stmt_file_info(state->file_);
747 if (file_info == NULL) {
753 info->file_name = file_info->get_file_name();
754 const Elf_Word dir_index = file_info->get_dir_index();
  /external/bluetooth/glib/gio/
gfile.c 248 const GTypeInfo file_info = local
262 &file_info, 0);
    [all...]

Completed in 563 milliseconds