Searched refs:statbuf (Results 1 - 6 of 6) sorted by relevance

/frameworks/av/media/libmedia/
H A DMediaScanner.cpp175 struct stat statbuf; local
195 if (stat(path, &statbuf) == 0) {
196 if (S_ISREG(statbuf.st_mode)) {
198 } else if (S_ISDIR(statbuf.st_mode)) {
213 if (stat(path, &statbuf) == 0) {
214 status_t status = client.scanFile(path, statbuf.st_mtime, 0,
229 stat(path, &statbuf);
230 status_t status = client.scanFile(path, statbuf.st_mtime, statbuf.st_size,
/frameworks/wilhelm/tests/examples/
H A DslesTestDecodeAac.cpp419 struct stat statbuf; local
420 ok = fstat(fd, &statbuf);
427 if (!S_ISREG(statbuf.st_mode)) {
433 ptr = mmap(NULL, statbuf.st_size, PROT_READ, MAP_FILE | MAP_PRIVATE, fd, (off_t) 0);
439 filelen = statbuf.st_size;
850 ok = munmap(ptr, statbuf.st_size);
/frameworks/wilhelm/tests/sandbox/
H A Dxaplay.c323 struct stat statbuf; local
324 ok = fstat(fd, &statbuf);
329 if (!S_ISREG(statbuf.st_mode)) {
334 ptr = mmap(NULL, statbuf.st_size, PROT_READ, MAP_FILE | MAP_PRIVATE, fd, (off_t) 0);
339 size_t filelen = statbuf.st_size;
/frameworks/native/cmds/installd/
H A Dcommands.cpp1279 struct stat* statbuf)
1284 if (lstat(path, statbuf) < 0) {
1300 int dstuid, int dstgid, struct stat* statbuf)
1309 if (lstat(srcpath, statbuf) < 0) {
1314 if ((statbuf->st_mode&S_IFDIR) == 0) {
1316 dstuid, dstgid, statbuf);
1362 if (movefileordir(srcpath, dstpath, dstbasepos, dstuid, dstgid, statbuf) != 0) {
1278 mkinnerdirs(char* path, int basepos, mode_t mode, int uid, int gid, struct stat* statbuf) argument
1299 movefileordir(char* srcpath, char* dstpath, int dstbasepos, int dstuid, int dstgid, struct stat* statbuf) argument
/frameworks/av/media/mtp/
H A DMtpServer.cpp1106 struct stat statbuf; local
1107 if (stat(path, &statbuf) == 0) {
1108 if (S_ISDIR(statbuf.st_mode)) {
/frameworks/wilhelm/src/android/
H A DAudioPlayer_to_android.cpp1534 struct stat statbuf; local
1535 if (!::fstat(fd, &statbuf) && S_ISREG(statbuf.st_mode)) {
1538 pAudioPlayer->mAPlayer->setDataSource(fd, 0, statbuf.st_size, true);

Completed in 189 milliseconds