/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/lib32/ |
libform.so.5.7 | |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/lib32/ |
libform.so | |
libform.so.5 | |
libform.so.5.9 | |
/system/core/adb/ |
test_track_devices.cpp | 60 if (sscanf(head, "%04x", &len) != 1 )
|
/system/core/libmemunreachable/ |
ProcessMappings.cpp | 45 if (sscanf(line, "%" SCNxPTR "-%" SCNxPTR " %4s %*x %*x:%*x %*d %n",
|
/system/extras/ext4_utils/ |
ext4fixup_main.c | 48 sscanf(optarg, "%d,%d,%d", &stop_phase, &stop_loc, &stop_count);
|
/external/fio/exp/ |
expression-parser.l | 133 rc = sscanf(yytext, "%lf", &dval); 148 rc = sscanf(yytext, "%x", &intval); 163 rc = sscanf(yytext, "%d", &intval);
|
/external/libcap-ng/libcap-ng-0.7/utils/ |
pscap.c | 101 sscanf(buf, "%d (%15c", &ppid, cmd); 102 sscanf(tmp+2, "%c %d", &state, &ppid); 137 sscanf(buf, "Uid: %d %d",
|
/external/libchrome/base/trace_event/ |
process_memory_maps_dump_provider.cc | 34 if (sscanf(header_line, "%" SCNx64 "-%" SCNx64 " %4c %*s %*s %*s%4095[^\n]\n", 69 int res = sscanf(counter_line, "%*s %" SCNu64 " kB", &counter_value); 79 int did_read = sscanf(counter_line, "%19[^\n ]", counter_name);
|
/external/libpcap/ |
pcap-usb-linux.c | 175 if (sscanf(&name[3], "%d", &n) == 0) 196 if (sscanf(&name[len+1], "%d", &n) != 1) 358 if (sscanf(handle->opt.source, USB_IFACE"%d", &handlep->bus_index) != 1) 507 ret = sscanf(string, "%x %d %c %c%c:%d:%d %s%n", &tag, ×tamp, &etype, 566 ret = sscanf(status, "%d", &dummy); 574 ret = sscanf(string, "%s %s %s %s %s%n", str1, str2, str3, str4, 599 ret = sscanf(string, " %d%n", &urb_len, &cnt); 618 if (sscanf(string, " %c", &urb_tag) != 1) 720 /* from the sscanf man page: 729 ntok = sscanf(ptr, "%s%n", token, &cnt) [all...] |
/external/libvorbis/vq/ |
latticebuild.c | 98 if(sscanf(line,"%d %d %d %d",&quantvals,&dim,&addmul,&sequencep)!=4){ 99 if(sscanf(line,"%d %d %d",&quantvals,&dim,&addmul)!=3){ 121 if(!line || sscanf(line,"%lf",quantlist+j)!=1){
|
/external/toybox/toys/pending/ |
mdev.c | 56 sscanf(toybuf, "%u:%u", &major, &minor); 64 sscanf(temp, "%u", &major); 66 sscanf(temp, "%u", &minor);
|
/external/toybox/toys/posix/ |
touch.c | 67 sscanf(s, ".%lu%n", &ts->tv_nsec, &len); 84 if (s && *s=='.' && sscanf(s, ".%2u%n", &(tm.tm_sec), &len) == 1) { 85 sscanf(s += len, "%lu%n", &ts->tv_nsec, &len);
|
/external/webrtc/webrtc/modules/audio_coding/codecs/g711/test/ |
testG711.cc | 92 sscanf(argv[3], "%s", inname); 93 sscanf(argv[4], "%s", outname); 95 sscanf(argv[5], "%s", bitname);
|
/external/webrtc/webrtc/modules/audio_coding/codecs/g722/test/ |
testG722.cc | 88 sscanf(argv[2], "%s", inname); 89 sscanf(argv[3], "%s", outbit); 90 sscanf(argv[4], "%s", outname);
|
/frameworks/rs/cpu_ref/ |
rsCpuExecutable.cpp | 339 if (sscanf(line, EXPORT_VAR_STR "%zu", &varCount) != 1) { 382 if (sscanf(line, EXPORT_FUNC_STR "%zu", &funcCount) != 1) { 412 if (sscanf(line, EXPORT_FOREACH_STR "%zu", &forEachCount) != 1) { 434 if (sscanf(line, "%u - %" MAKE_STR(MAXLINESTR) "s", 459 if (sscanf(line, EXPORT_REDUCE_STR "%zu", &reduceCount) != 1) { 485 if (sscanf(line, "%u - %zu" DELIMNAME DELIMNAME DELIMNAME DELIMNAME DELIMNAME DELIMNAME, 564 if (sscanf(line, OBJECT_SLOT_STR "%zu", &objectSlotCount) != 1) { 574 if (sscanf(line, "%u", &varNum) != 1) { 592 if (sscanf(line, PRAGMA_STR "%zu", &pragmaCount) != 1) { 620 if (sscanf(line, "%" MAKE_STR(MAXLINESTR) "s - %" MAKE_STR(MAXLINESTR) "s" [all...] |
/system/extras/sane_schedstat/ |
sane_schedstat.c | 87 if (sscanf(b, "cpu%d %u %u %u %u %u %u %llu %llu %lu\n", 115 if (sscanf(b, "version %u\n", &version) != 1) { 122 if (!b || sscanf(b, "timestamp %llu\n", &ts) != 1) {
|
/prebuilts/go/darwin-x86/src/fmt/ |
scan_test.go | 418 n, err := Sscanf(test.text, test.format, test.in) 596 n, err = Sscanf(`""`, "%q", &s1) 598 t.Errorf("Sscanf count error: expected 1: got %d", n) 601 t.Errorf("Sscanf <empty> expected no error with quoted string; got %s", err) 683 n, err := Sscanf("23", "%d %d", &i, &j) 685 t.Errorf("Sscanf expected one value of 23; got %d %d", n, i) 688 t.Errorf("Sscanf expected EOF; got %q", err) 732 if _, err := Sscanf("", test.format, test.v); err != io.EOF { 735 if _, err := Sscanf(" ", test.format, test.v); err != io.EOF { 797 // Sscanf should wor [all...] |
doc.go | 243 Sscanf and Sscanln read from an argument string. 250 Scanf, Fscanf and Sscanf require that (after skipping spaces) 255 When scanning with Scanf, Fscanf, and Sscanf, all non-empty 262 Scanf, Fscanf, and Sscanf parse the arguments according to a 285 Sscanf(" 1234567 ", "%5s%d", &s, &i) 287 Sscanf(" 12 34 567 ", "%5s%d", &s, &i)
|
/prebuilts/go/linux-x86/src/fmt/ |
scan_test.go | 418 n, err := Sscanf(test.text, test.format, test.in) 596 n, err = Sscanf(`""`, "%q", &s1) 598 t.Errorf("Sscanf count error: expected 1: got %d", n) 601 t.Errorf("Sscanf <empty> expected no error with quoted string; got %s", err) 683 n, err := Sscanf("23", "%d %d", &i, &j) 685 t.Errorf("Sscanf expected one value of 23; got %d %d", n, i) 688 t.Errorf("Sscanf expected EOF; got %q", err) 732 if _, err := Sscanf("", test.format, test.v); err != io.EOF { 735 if _, err := Sscanf(" ", test.format, test.v); err != io.EOF { 797 // Sscanf should wor [all...] |
doc.go | 243 Sscanf and Sscanln read from an argument string. 250 Scanf, Fscanf and Sscanf require that (after skipping spaces) 255 When scanning with Scanf, Fscanf, and Sscanf, all non-empty 262 Scanf, Fscanf, and Sscanf parse the arguments according to a 285 Sscanf(" 1234567 ", "%5s%d", &s, &i) 287 Sscanf(" 12 34 567 ", "%5s%d", &s, &i)
|
/frameworks/base/core/jni/ |
android_os_Debug.cpp | 257 if (sscanf(line, "%" SCNx64 "-%" SCNx64 " %*s %*x %*x:%*x %*d%n", &start, &end, &name_pos) != 2) { 367 if (line[0] == 'S' && sscanf(line, "Size: %d kB", &temp) == 1) { 369 } else if (line[0] == 'R' && sscanf(line, "Rss: %d kB", &temp) == 1) { 371 } else if (line[0] == 'P' && sscanf(line, "Pss: %d kB", &temp) == 1) { 373 } else if (line[0] == 'S' && sscanf(line, "Shared_Clean: %d kB", &temp) == 1) { 375 } else if (line[0] == 'S' && sscanf(line, "Shared_Dirty: %d kB", &temp) == 1) { 377 } else if (line[0] == 'P' && sscanf(line, "Private_Clean: %d kB", &temp) == 1) { 379 } else if (line[0] == 'P' && sscanf(line, "Private_Dirty: %d kB", &temp) == 1) { 381 } else if (line[0] == 'R' && sscanf(line, "Referenced: %d kB", &temp) == 1) { 383 } else if (line[0] == 'S' && sscanf(line, "Swap: %d kB", &temp) == 1) [all...] |
/external/libjpeg-turbo/ |
rdswitch.c | 328 ch = ','; /* if not set by sscanf, will be ',' */ 329 if (sscanf(arg, "%d%c", &val, &ch) < 1) 368 ch = ','; /* if not set by sscanf, will be ',' */ 369 if (sscanf(arg, "%d%c", &val, &ch) < 1) 402 ch2 = ','; /* if not set by sscanf, will be ',' */ 403 if (sscanf(arg, "%d%c%d%c", &val1, &ch1, &val2, &ch2) < 3)
|
/system/extras/simpleperf/ |
environment.cpp | 129 if (sscanf(line, "%" PRIx64 " %c %s%s", &symbol.addr, &symbol.type, name, module) < 3) { 162 if (sscanf(line, "%s%*lu%*u%*s%*s 0x%" PRIx64, name, &addr) == 2) { 176 if (sscanf(content.c_str(), "Linux version %s", s) == 1) { 264 if (sscanf(line, "Name:%s", s) == 1) { 267 } else if (sscanf(line, "Tgid:%d", tgid) == 1) { 344 if (sscanf(line, "%" PRIx64 "-%" PRIx64 " %s %" PRIx64 " %*x:%*x %*u %s\n", &start_addr,
|