Searched defs:stat (Results 1 - 4 of 4) sorted by relevance

/frameworks/av/media/mtp/
H A DMtpStorage.cpp24 #include <sys/stat.h>
66 struct statfs stat; local
67 if (statfs(getPath(), &stat))
69 mMaxCapacity = (uint64_t)stat.f_blocks * (uint64_t)stat.f_bsize;
75 struct statfs stat; local
76 if (statfs(getPath(), &stat))
78 uint64_t freeSpace = (uint64_t)stat.f_bavail * (uint64_t)stat.f_bsize;
/frameworks/native/cmds/dumpstate/
H A Ddumpstate.c28 #include <sys/stat.h>
70 struct stat st;
104 static const char stat[] = "/stat"; local
109 return strcmp(path + len - sizeof(stat) + 1, stat); /* .../stat? */
359 struct stat st;
383 if (stat(anr_traces_path, &st)) {
410 if (!stat(PSTORE_LAST_KMS
[all...]
/frameworks/av/media/libstagefright/
H A DAwesomePlayer.cpp466 TrackStat *stat = local
468 stat->mMIME = mime.string();
479 TrackStat *stat = local
481 stat->mMIME = mime.string();
1598 TrackStat *stat = &mStats.mTracks.editItemAt(mStats.mAudioTrackIndex); local
1605 stat->mDecoderName = component;
1696 TrackStat *stat = &mStats.mTracks.editItemAt(mStats.mVideoTrackIndex); local
1698 stat->mDecoderName = componentName;
2940 const TrackStat &stat = mStats.mTracks.itemAt(i); local
2943 fprintf(out, " MIME(%s)", stat
[all...]
/frameworks/base/core/jni/
H A Dandroid_os_Debug.cpp725 static jint read_binder_stat(const char* stat) argument
745 // now that we have this process, read until we find the stat that we are looking for
746 len = snprintf(compare, 128, " %s: ", stat);

Completed in 378 milliseconds