Searched refs:st (Results 1 – 5 of 5) sorted by relevance
| /scripts/kconfig/ |
| A D | expr.h | 205 #define for_all_properties(sym, st, tok) \ argument 206 for (st = sym->prop; st; st = st->next) \ 207 if (st->type == (tok)) 208 #define for_all_defaults(sym, st) for_all_properties(sym, st, P_DEFAULT) argument 209 #define for_all_choices(sym, st) for_all_properties(sym, st, P_CHOICE) argument 210 #define for_all_prompts(sym, st) \ argument 211 for (st = sym->prop; st; st = st->next) \ 212 if (st->text)
|
| A D | confdata.c | 22 struct stat st; in is_present() local 24 return !stat(path, &st); in is_present() 30 struct stat st; in is_dir() local 32 if (stat(path, &st)) in is_dir() 35 return S_ISDIR(st.st_mode); in is_dir()
|
| /scripts/dtc/ |
| A D | fstree.c | 30 struct stat st; in read_fstree() local 48 if (lstat(tmpname, &st) < 0) in read_fstree() 51 if (S_ISREG(st.st_mode)) { in read_fstree() 63 st.st_size)); in read_fstree() 67 } else if (S_ISDIR(st.st_mode)) { in read_fstree()
|
| /scripts/basic/ |
| A D | fixdep.c | 285 struct stat st; in read_file() local 295 if (fstat(fd, &st) < 0) { in read_file() 300 buf = malloc(st.st_size + 1); in read_file() 305 if (read(fd, buf, st.st_size) != st.st_size) { in read_file() 309 buf[st.st_size] = '\0'; in read_file()
|
| /scripts/ |
| A D | checkstack.pl | 85 $re = qr/.*st[dw]u.*r1,-($x{1,8})\(r1\)/o;
|
Completed in 9 milliseconds