| /external/llvm/include/llvm/Support/ |
| FileSystem.h | 501 inline std::error_code file_size(const Twine &Path, uint64_t &Result) { function in namespace:llvm::sys::fs
|
| /external/wpa_supplicant_8/src/utils/ |
| pcsc_funcs.c | 320 wpa_printf(MSG_DEBUG, "SCARD: file_size=%d", 1101 int file_size; local 1102 if (scard_parse_fsp_templ(buf, blen, NULL, &file_size)) 1104 blen = file_size; 1160 int file_size; local 1173 file_size = (buf[2] << 8) | buf[3]; 1175 if (scard_parse_fsp_templ(buf, blen, NULL, &file_size)) 1178 if (file_size == 3) { 1182 if (file_size < 4 || file_size > (int) sizeof(buf)) [all...] |
| /hardware/broadcom/wlan/bcmdhd/dhdutil/ |
| dhdu.c | 96 static int file_size(char *fname); 336 file_size(char *fname) function [all...] |
| /system/core/fastboot/ |
| fastboot.c | 153 static int64_t file_size(int fd) function 171 sz = file_size(fd); 644 sz64 = file_size(fd); [all...] |
| /external/chromium_org/google_apis/drive/ |
| gdata_wapi_parser.h | 396 int64 file_size() const { return file_size_; } function in class:google_apis::ResourceEntry 460 void set_file_size(int64 file_size) { file_size_ = file_size; }
|
| /external/chromium_org/third_party/leveldatabase/src/db/ |
| db_impl.cc | 63 uint64_t file_size; member in struct:leveldb::DBImpl::CompactionState::Output 477 (unsigned long long) meta.file_size, 483 // Note that if file_size is zero, the file has been deleted and 486 if (s.ok() && meta.file_size > 0) { 492 edit->AddFile(level, meta.number, meta.file_size, 498 stats.bytes_written = meta.file_size; 691 c->edit()->AddFile(c->level() + 1, f->number, f->file_size, 701 static_cast<unsigned long long>(f->file_size), 800 compact->current_output()->file_size = current_bytes; 850 out.number, out.file_size, out.smallest, out.largest) [all...] |
| /external/lldb/source/Plugins/ObjectFile/ELF/ |
| ObjectFileELF.cpp | 865 const uint64_t file_size = header.sh_type == SHT_NOBITS ? 0 : header.sh_size; local [all...] |
| /hardware/intel/common/libva/test/encode/ |
| avcenc.c | 1555 off_t file_size; local [all...] |
| mpeg2enc.c | 575 long file_size; local 608 file_size = ftell(ctx->ifp); 611 if ((file_size < ctx->frame_size) || 612 (file_size % ctx->frame_size)) { 613 fprintf(stderr, "The input file size %ld isn't a multiple of the frame size %d\n", file_size, ctx->frame_size); 617 ctx->num_pictures = file_size / ctx->frame_size; [all...] |
| mpeg2vaenc.c | 575 long file_size; local 608 file_size = ftell(ctx->ifp); 611 if ((file_size < ctx->frame_size) || 612 (file_size % ctx->frame_size)) { 613 fprintf(stderr, "The input file size %ld isn't a multiple of the frame size %d\n", file_size, ctx->frame_size); 617 ctx->num_pictures = file_size / ctx->frame_size; [all...] |
| /hardware/intel/common/libva/test/transcode/ |
| mpeg2transcode.cpp | 3209 long file_size; local [all...] |
| /system/core/adb/ |
| sysdeps_win32.c | 26 DWORD file_size; local 39 file_size = GetFileSize( file, NULL ); 42 if (file_size > 0) { 43 data = (char*) malloc( file_size + 1 ); 45 D("load_file: could not allocate %ld bytes\n", file_size ); 46 file_size = 0; 50 if ( !ReadFile( file, data, file_size, &out_bytes, NULL ) || 51 out_bytes != file_size ) 53 D("load_file: could not read %ld bytes from '%s'\n", file_size, fn); 56 file_size = 0 [all...] |
| /external/chromium_org/net/url_request/ |
| url_request_unittest.cc | 717 int64 file_size = -1; local 718 EXPECT_TRUE(base::GetFileSize(app_path, &file_size)); 723 EXPECT_EQ(d.bytes_received(), static_cast<int>(file_size)); 761 int64 file_size; local 762 EXPECT_TRUE(base::GetFileSize(temp_path, &file_size)); 806 int64 file_size; local 807 EXPECT_TRUE(base::GetFileSize(temp_path, &file_size)); 850 int64 file_size; local 851 EXPECT_TRUE(base::GetFileSize(temp_path, &file_size)); 8021 int64 file_size = 0; local 8052 int64 file_size = 0; local 8088 int64 file_size = 0; local 8119 int64 file_size = 0; local 8147 int64 file_size = 0; local 8178 int64 file_size = 0; local 8207 int64 file_size = 0; local 8226 int64 file_size = 0; local 8258 int64 file_size = 0; local 8280 int64 file_size = 0; local [all...] |
| /external/opencv/cxcore/src/ |
| cxpersistence.cpp | 2730 int file_size = (int)ftell( fs->file ); local [all...] |
| /external/protobuf/src/google/protobuf/ |
| descriptor.pb.h | 207 inline int file_size() const; 2470 inline int FileDescriptorSet::file_size() const { function in class:google::protobuf::FileDescriptorSet [all...] |
| /external/valgrind/main/coregrind/m_debuginfo/ |
| readpdb.c | 345 unsigned int file_size[1]; member in struct:PDB_DS_TOC 1038 if (reader->u.ds.toc->file_size[file_number] == 0 1039 || reader->u.ds.toc->file_size[file_number] == 0xFFFFFFFF) 1043 = reader->u.ds.toc->file_size + reader->u.ds.toc->num_files; 1045 block_list += (reader->u.ds.toc->file_size[i] 1050 *plength = reader->u.ds.toc->file_size[file_number]; 1052 reader->u.ds.toc->file_size[file_number]); [all...] |
| /external/chromium_org/third_party/protobuf/src/google/protobuf/ |
| descriptor.pb.h | 211 inline int file_size() const; 2779 inline int FileDescriptorSet::file_size() const { function in class:google::protobuf::FileDescriptorSet [all...] |