Searched defs:statbuf (Results 1 - 7 of 7) sorted by relevance
/frameworks/minikin/app/ |
H A D | HyphTool.cpp | 13 struct stat statbuf; local 14 int status = stat(fn, &statbuf); 19 size_t size = statbuf.st_size;
|
/frameworks/av/media/libmedia/ |
H A D | MediaScanner.cpp | 175 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 D | slesTestDecodeAac.cpp | 419 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 D | xaplay.c | 323 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/av/media/mtp/ |
H A D | MtpServer.cpp | 1106 struct stat statbuf; local 1107 if (stat(path, &statbuf) == 0) { 1108 if (S_ISDIR(statbuf.st_mode)) {
|
/frameworks/wilhelm/src/android/ |
H A D | AudioPlayer_to_android.cpp | 1534 struct stat statbuf; local 1535 if (!::fstat(fd, &statbuf) && S_ISREG(statbuf.st_mode)) { 1538 pAudioPlayer->mAPlayer->setDataSource(fd, 0, statbuf.st_size, true);
|
/frameworks/native/cmds/installd/ |
H A D | commands.cpp | 1301 struct stat* statbuf) 1306 if (lstat(path, statbuf) < 0) { 1322 int dstuid, int dstgid, struct stat* statbuf) 1331 if (lstat(srcpath, statbuf) < 0) { 1336 if ((statbuf->st_mode&S_IFDIR) == 0) { 1338 dstuid, dstgid, statbuf); 1384 if (movefileordir(srcpath, dstpath, dstbasepos, dstuid, dstgid, statbuf) != 0) { 1300 mkinnerdirs(char* path, int basepos, mode_t mode, int uid, int gid, struct stat* statbuf) argument 1321 movefileordir(char* srcpath, char* dstpath, int dstbasepos, int dstuid, int dstgid, struct stat* statbuf) argument
|
Completed in 133 milliseconds