Searched refs:st (Results 1 - 25 of 26) sorted by last modified time

12

/system/core/adb/
H A Dcommandline.c1518 struct stat st; local
1524 if (stat(filename, &st) != 0) {
1529 if (!S_ISREG(st.st_mode)) {
H A Dfile_sync_client.c606 struct stat st; local
635 stat(stat_path, &st);
637 if (S_ISDIR(st.st_mode)) {
643 if(lstat(ci->src, &st)) {
649 if(!S_ISREG(st.st_mode) && !S_ISLNK(st.st_mode)) {
653 ci->time = st.st_mtime;
654 ci->mode = st.st_mode;
655 ci->size = st.st_size;
744 struct stat st; local
946 struct stat st; local
[all...]
H A Dfile_sync_service.c59 struct stat st; local
63 if(lstat(path, &st)) {
68 msg.stat.mode = htoll(st.st_mode);
69 msg.stat.size = htoll(st.st_size);
70 msg.stat.time = htoll(st.st_mtime);
80 struct stat st; local
105 if(lstat(tmp, &st) == 0) {
106 msg.dent.mode = htoll(st.st_mode);
107 msg.dent.size = htoll(st.st_size);
108 msg.dent.time = htoll(st
[all...]
H A Dusb_linux.c231 struct stat st; local
273 if (!fstat(fd, &st) && S_ISCHR(st.st_mode)) {
277 major(st.st_rdev), minor(st.st_rdev));
/system/core/fastboot/
H A Dengine.c288 struct stat st; local
310 fstat(fd, &st);
311 image->image_size = st.st_size;
312 image->buffer = load_buffer(fd, st.st_size);
H A Dusb_linux.c112 struct stat st; local
183 result = fstat(fd, &st);
184 if (!result && S_ISCHR(st.st_mode)) {
190 major(st.st_rdev), minor(st.st_rdev));
/system/core/include/private/pixelflinger/
H A Dggl_context.h380 } st[2]; member in union:android::texture_shade_t::__anon324
403 } st[2]; member in union:android::texture_iterators_t::__anon327
/system/core/init/
H A Ddevices.c656 struct stat st; local
660 if(fstat(fw_fd, &st) < 0)
662 len_to_copy = st.st_size;
/system/core/libcutils/
H A Dtzstrftime.c739 struct stat st; local
784 if (fstat(fd, &st) != 0)
786 if (st.st_size <= 0)
788 bufsize = namesize + st.st_size;
795 plim = p + st.st_size;
796 if (read(fd, p, (size_t) st.st_size) != st.st_size)
H A Dtztime.c1294 struct state st; local
1295 if (tzload(tz, &st, TRUE) != 0) {
1297 gmtload(&st);
1300 localsub(timep, 0L, tmp, &st);
1944 struct state st; local
1945 if (tzload(tz, &st, TRUE) != 0) {
1947 gmtload(&st);
1949 return time1(tmp, localsub, 0L, &st);
/system/core/libpixelflinger/
H A Dscanline.cpp791 uint8_t& st = texel.s[j]; local
796 if (st) {
798 sf = st;
802 if (st) {
803 uint32_t factor = Ct + (Ct>>(st-1));
804 Cf = (Cf * factor) >> st;
809 rescale(Cf, sf, Ct, st);
814 if (st) {
818 uint32_t factor = Ct + (Ct>>(st-1));
819 Cf = ((((1<<st)
1883 } st[2]; member in union:android::__anon435::__anon436
[all...]
/system/core/run-as/
H A Dpackage.c76 struct stat st; local
88 ret = TEMP_FAILURE_RETRY(fstat(fd, &st));
93 if ((st.st_uid != AID_SYSTEM) || (st.st_gid != AID_SYSTEM)) {
98 if ((st.st_mode & S_IWOTH) != 0) {
103 length = (size_t)st.st_size;
104 if ((off_t)length != st.st_size) {
150 struct stat st; local
153 ret = lstat(path, &st);
160 if (!S_ISDIR(st
[all...]
/system/core/sdcard/
H A Dfuse.h411 struct fuse_kstatfs st; member in struct:fuse_statfs_out
H A Dsdcard.c899 out.st.blocks = stat.f_blocks;
900 out.st.bfree = stat.f_bfree;
901 out.st.bavail = stat.f_bavail;
902 out.st.files = stat.f_files;
903 out.st.ffree = stat.f_ffree;
904 out.st.bsize = stat.f_bsize;
905 out.st.namelen = stat.f_namelen;
906 out.st.frsize = stat.f_frsize;
/system/core/sh/
H A Djobs.c385 int st; local
409 st = ps->status;
412 if (st1 != st)
453 st = WEXITSTATUS(ps->status);
454 if (st)
455 fmtstr(s + col, 16, "Done(%d)", st);
461 st = WSTOPSIG(ps->status);
464 st = WTERMSIG(ps->status);
465 st &= 0x7f;
466 if (st < NSI
987 int st; local
[all...]
/system/core/toolbox/
H A Dcat.c198 struct stat st; local
203 if (fstat(fd, &st) == -1) {
207 if (!S_ISREG(st.st_mode)) {
H A Ddd.c86 extern STAT st;
108 STAT st; /* statistics */ variable
244 (void)gettimeofday(&st.start, NULL); /* Statistics timestamp. */
304 if (cpy_cnt && (st.in_full + st.in_part) >= cpy_cnt)
359 ++st.in_full;
364 ++st.in_full;
373 ++st.in_part;
390 ++st.swab;
519 st
[all...]
H A Ddf.c25 struct statfs st; local
27 if (statfs(s, &st) < 0) {
31 if (st.f_blocks == 0 && !always)
34 printsize((long long)st.f_blocks * (long long)st.f_bsize);
36 printsize((long long)(st.f_blocks - (long long)st.f_bfree) * st.f_bsize);
38 printsize((long long)st.f_bfree * (long long)st
[all...]
H A Dmkdir.c38 struct stat st; local
59 if(stat(currpath, &st) != 0) {
H A Dmv.c12 struct stat st; local
22 if (stat(dest, &st)) {
28 st.st_mode = 0;
42 if (S_ISDIR(st.st_mode)) {
H A Dnewfs_msdos.c845 struct stat st; local
847 if (fstat(fd, &st))
850 ms = st.st_size;
H A Drm.c22 struct stat st; local
28 if (lstat(name, &st) < 0)
32 if (!S_ISDIR(st.st_mode))
H A Dumount.c16 struct stat st; local
19 if (stat(dev, &st) == 0) {
20 if (S_ISBLK(st.st_mode) && (major(st.st_rdev) == LOOP_MAJOR)) {
/system/core/toolbox/grep/
H A Dutil.c290 size_t st = 0; local
295 while (st <= l->len) {
296 pmatch.rm_so = st;
310 st = pmatch.rm_eo;
315 st = pmatch.rm_eo;
356 if (st == (size_t)pmatch.rm_so)
/system/extras/fatblock/
H A Dimport.c97 struct stat st; local
102 ret = stat(path, &st);
125 f->size = st.st_size;
126 f->dev = st.st_dev;
127 f->ino = st.st_ino;
128 f->mtime = st.st_mtime;

Completed in 125 milliseconds

12