HomeSort by relevance Sort by last modified time
    Searched full:fileinfo (Results 1 - 25 of 378) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/lzma/CPP/7zip/UI/Common/
ArchiveName.cpp 12 UString CreateArchiveName(const NFile::NFind::CFileInfo fileInfo, bool keepName)
14 FString resultName = fileInfo.Name;
15 if (!fileInfo.IsDir() && !keepName)
40 NFile::NFind::CFileInfo fileInfo;
41 if (fileInfo.Find(dirPrefix))
42 resultName = fileInfo.Name;
48 NFile::NFind::CFileInfo fileInfo;
49 if (!fileInfo.Find(srcName))
52 resultName = fileInfo.Name;
53 if (!fileInfo.IsDir() && !keepName)
    [all...]
ArchiveName.h 11 UString CreateArchiveName(const NWindows::NFile::NFind::CFileInfo fileInfo, bool keepName);
  /external/nanopb-c/examples/network_server/
fileproto.proto 9 message FileInfo {
16 repeated FileInfo file = 2;
server.c 30 FileInfo fileinfo; local
34 fileinfo.inode = file->d_ino;
35 strncpy(fileinfo.name, file->d_name, sizeof(fileinfo.name));
36 fileinfo.name[sizeof(fileinfo.name) - 1] = '\0';
41 if (!pb_encode_submessage(stream, FileInfo_fields, &fileinfo))
client.c 28 FileInfo fileinfo; local
30 if (!pb_decode(stream, FileInfo_fields, &fileinfo))
33 printf("%-10lld %s\n", (long long)fileinfo.inode, fileinfo.name);
fileproto.options 13 FileInfo.name max_size:128
  /frameworks/base/include/androidfw/
AssetDir.h 77 class FileInfo {
79 FileInfo(void) {}
80 FileInfo(const String8& path) // useful for e.g. svect.indexOf
83 ~FileInfo(void) {}
84 FileInfo(const FileInfo& src) {
87 const FileInfo& operator= (const FileInfo& src) {
93 void copyMembers(const FileInfo& src) {
100 bool operator< (const FileInfo& rhs) const
    [all...]
  /external/libchrome/base/files/
file_enumerator.cc 11 FileEnumerator::FileInfo::~FileInfo() {
file_enumerator_posix.cc 18 // FileEnumerator::FileInfo ----------------------------------------------------
20 FileEnumerator::FileInfo::FileInfo() {
24 bool FileEnumerator::FileInfo::IsDirectory() const {
28 FilePath FileEnumerator::FileInfo::GetName() const {
32 int64_t FileEnumerator::FileInfo::GetSize() const {
36 base::Time FileEnumerator::FileInfo::GetLastModifiedTime() const {
88 std::vector<FileInfo> entries;
94 for (std::vector<FileInfo>::const_iterator i = entries.begin();
117 FileEnumerator::FileInfo FileEnumerator::GetInfo() const
    [all...]
  /external/lzma/CPP/7zip/UI/FileManager/
OverwriteDialog.cpp 46 const NOverwriteDialog::CFileInfo &fileInfo)
49 if (fileInfo.SizeIsDefined)
50 sizeString = MyFormatNew(IDS_FILE_SIZE, NumberToString(fileInfo.Size));
52 const UString &fileName = fileInfo.Name;
67 if (fileInfo.TimeIsDefined)
70 if (!FileTimeToLocalFileTime(&fileInfo.Time, &localFileTime))
85 GetSystemString(fileInfo.Name), FILE_ATTRIBUTE_NORMAL, &shellFileInfo,
  /frameworks/base/libs/androidfw/
AssetDir.cpp 28 * Find a matching entry in a vector of FileInfo. Because it's sorted, we
33 /*static*/ int AssetDir::FileInfo::findEntry(const SortedVector<FileInfo>* pVector,
36 FileInfo tmpInfo;
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug107.go 9 type _ os.FileInfo
  /prebuilts/go/linux-x86/test/fixedbugs/
bug107.go 9 type _ os.FileInfo
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppObexClientSession.java 311 BluetoothOppSendFileInfo fileInfo = BluetoothOppUtility.getSendFileInfo(mInfo.mUri);
312 if (fileInfo.mFileName == null || fileInfo.mLength == 0) {
314 Constants.updateShareStatus(mContext1, mInfo.mId, fileInfo.mStatus);
319 Log.v(TAG, "filename :" + fileInfo.mFileName);
320 Log.v(TAG, "length :" + fileInfo.mLength);
321 Log.v(TAG, "mimetype :" + fileInfo.mMimetype);
327 updateValues.put(BluetoothShare.FILENAME_HINT, fileInfo.mFileName);
328 updateValues.put(BluetoothShare.TOTAL_BYTES, fileInfo.mLength);
329 updateValues.put(BluetoothShare.MIMETYPE, fileInfo.mMimetype)
    [all...]
  /prebuilts/go/darwin-x86/src/os/
stat_plan9.go 20 func fileInfoFromStat(d *syscall.Dir) FileInfo {
91 // Stat returns a FileInfo describing the named file.
93 func Stat(name string) (FileInfo, error) {
101 // Lstat returns a FileInfo describing the named file.
102 // If the file is a symbolic link, the returned FileInfo
105 func Lstat(name string) (FileInfo, error) {
110 func atime(fi FileInfo) time.Time {
types_notwin.go 13 // A fileStat is the implementation of FileInfo returned by Stat and Lstat.
stat_windows.go 12 // Stat returns the FileInfo structure describing file.
14 func (file *File) Stat() (FileInfo, error) {
49 // Stat returns a FileInfo structure describing the named file.
51 func Stat(name string) (FileInfo, error) {
52 var fi FileInfo
69 // Lstat returns the FileInfo structure describing the named file.
70 // If the file is a symbolic link, the returned FileInfo
73 func Lstat(name string) (FileInfo, error) {
  /prebuilts/go/linux-x86/src/os/
stat_plan9.go 20 func fileInfoFromStat(d *syscall.Dir) FileInfo {
91 // Stat returns a FileInfo describing the named file.
93 func Stat(name string) (FileInfo, error) {
101 // Lstat returns a FileInfo describing the named file.
102 // If the file is a symbolic link, the returned FileInfo
105 func Lstat(name string) (FileInfo, error) {
110 func atime(fi FileInfo) time.Time {
types_notwin.go 13 // A fileStat is the implementation of FileInfo returned by Stat and Lstat.
stat_windows.go 12 // Stat returns the FileInfo structure describing file.
14 func (file *File) Stat() (FileInfo, error) {
49 // Stat returns a FileInfo structure describing the named file.
51 func Stat(name string) (FileInfo, error) {
52 var fi FileInfo
69 // Lstat returns the FileInfo structure describing the named file.
70 // If the file is a symbolic link, the returned FileInfo
73 func Lstat(name string) (FileInfo, error) {
  /external/lzma/CPP/Windows/
FileFind.h 88 bool FindFirst(CFSTR wildcard, CFileInfo &fileInfo);
89 bool FindNext(CFileInfo &fileInfo);
115 bool NextAny(CFileInfo &fileInfo);
132 bool NextAny(CFileInfo &fileInfo);
135 bool Next(CFileInfo &fileInfo);
136 bool Next(CFileInfo &fileInfo, bool &found);
  /system/core/libziparchive/
zip_writer.cc 174 FileInfo fileInfo = {};
175 fileInfo.path = std::string(path);
176 fileInfo.local_file_header_offset = current_offset_;
178 if (!IsValidEntryName(reinterpret_cast<const uint8_t*>(fileInfo.path.data()),
179 fileInfo.path.size())) {
191 fileInfo.compression_method = kCompressDeflated;
198 fileInfo.compression_method = kCompressStored;
200 header.compression_method = fileInfo.compression_method;
202 ExtractTimeAndDate(time, &fileInfo.last_mod_time, &fileInfo.last_mod_date)
    [all...]
  /external/e2fsprogs/util/
copy_sparse.c 92 struct stat64 fileinfo; local
102 if (stat64(src, &fileinfo) < 0) {
106 if (!S_ISREG(fileinfo.st_mode)) {
126 numblocks = (fileinfo.st_size + (bs-1)) / bs;
129 (long long) fileinfo.st_size, numblocks);
189 offset = fileinfo.st_size;
190 if (fstat64(ofd, &fileinfo) < 0) {
194 if (fileinfo.st_size != offset) {
  /frameworks/base/core/java/com/android/internal/util/
FileRotator.java 139 final FileInfo info = new FileInfo(mPrefix);
154 final FileInfo info = new FileInfo(mPrefix);
218 final FileInfo info = new FileInfo(mPrefix);
287 final FileInfo info = new FileInfo(mPrefix);
308 final FileInfo info = new FileInfo(mPrefix)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ANTLRFileStream.cs 39 using FileInfo = System.IO.FileInfo;
109 FileInfo f = new FileInfo(fileName);
140 private long GetFileLength(FileInfo file)

Completed in 579 milliseconds

1 2 3 4 5 6 7 8 91011>>