HomeSort by relevance Sort by last modified time
    Searched full:sscanf (Results 151 - 175 of 1197) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/
cstdio 86 #undef sscanf
133 using ::sscanf;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/
cstdio 86 #undef sscanf
133 using ::sscanf;
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/
cstdio 88 #undef sscanf
138 using ::sscanf;
  /system/core/adb/
console.cpp 61 return (sscanf(serial, "emulator-%d", &port) == 1) ? port : -1;
77 if (sscanf(device.c_str(), "emulator-%d", &port) == 1) {
  /system/core/libbacktrace/
BacktraceMap.cpp 59 if (sscanf(line, "%*21c %lx-%lx [%*13c] %3c/%*3c SM=%*3c %n",
66 if (sscanf(line, "%lx-%lx %4s %*x %*x:%*x %*d %n",
  /system/core/logd/
LogCommand.cpp 116 sscanf(line + sizeof(uid_string) - 1, "%u\t%u\t%u\t%u",
129 sscanf(line + sizeof(gid_string) - 1, "%u\t%u\t%u\t%u",
  /system/extras/memory_replay/
main.cpp 58 if (sscanf(word, "free %" SCNxPTR, &pointer) == 1 && pointer != 0) {
95 if (sscanf(line, "%d: %s %" SCNxPTR " %n", &tid, type, &key_pointer, &line_pos) != 3) {
  /system/extras/tests/audio/alsa/
pcmtest.cpp 98 sscanf(de->d_name, PCM_PREFIX "C%uD%u", &(pcmnodes[pcms].card),
117 sscanf(de->d_name, MIXER_PREFIX "C%u", &mixer);
  /system/bt/bta/hf_client/
bta_hf_client_at.c 637 res = sscanf(buffer, "%u%n", &value, &offset);
667 while((res = sscanf(buffer, "%u%n", &value, &offset)) > 0)
701 while ((res = sscanf(buffer, "(\"%128[^\"]\",(%u%*[-,]%u))%n", name, &min, &max, &offset)) > 2)
821 res = sscanf(buffer, "%u,%u%n", &index, &value, &offset);
908 res = sscanf(buffer, "\"%32[^\"]\",%u%n", number, &type, &offset);
942 res = sscanf(buffer, "\"%32[^\"]\",%u%n", number, &type, &offset);
975 res = sscanf(buffer, "%hhi,0,\"%16[^\"]\"%n", &mode, opstr, &offset);
1013 res = sscanf(buffer, "\"%32[^\"]\"\r\n%n", numstr, &offset);
1054 res = sscanf(buffer, "%hu,%hu,%hu,%hu,%hu%n",
1074 int res2 = sscanf(buffer, ",\"%32[^\"]\",%hu%n", numstr, &type, &offset)
    [all...]
  /external/toybox/toys/pending/
lsof.c 153 if (sscanf(line, "%*p: %*X %*X %*X %*X %*X %lu %n", &inode, &path_pos) >= 1 &&
174 if (sscanf(line, "%*p %u %*u %*x %*u %*u %*u %*u %*u %lu",
199 ok = sscanf(line, " %*d: %x:%x %x:%x %x %*x:%*x %*X:%*X %*X %*d %*d %ld",
204 ok = sscanf(line, " %*d: %8x%8x%8x%8x:%x %8x%8x%8x%8x:%x %x "
343 if (sscanf(line, "%*x-%*x %*s %llx %s %ld %n",
bootchartd.c 79 sscanf(pid_dir->d_name, "%d", &pid);
125 sscanf(ptr, "%lf", &smpl_val);
132 sscanf(ptr, "%s", toybuf); // string will come with double quotes.
  /external/webrtc/webrtc/modules/audio_processing/test/
process_test.cc 205 ASSERT_EQ(1, sscanf(argv[i], "%d", &sample_rate_hz));
211 ASSERT_EQ(1, sscanf(argv[i], "%" PRIuS, &num_capture_input_channels));
213 ASSERT_EQ(1, sscanf(argv[i], "%" PRIuS, &num_capture_output_channels));
218 ASSERT_EQ(1, sscanf(argv[i], "%" PRIuS, &num_render_channels));
255 ASSERT_EQ(1, sscanf(argv[i], "%d", &suppression_level));
291 ASSERT_EQ(1, sscanf(argv[i], "%d", &routing_mode));
318 ASSERT_EQ(1, sscanf(argv[i], "%d", &level));
327 ASSERT_EQ(1, sscanf(argv[i], "%d", &gain));
416 ASSERT_EQ(1, sscanf(argv[i], "%d", &extra_delay_ms));
420 ASSERT_EQ(1, sscanf(argv[i], "%d", &override_delay_ms))
    [all...]
  /external/libavc/test/decoder/
main.c     [all...]
  /external/google-breakpad/src/tools/windows/converter/
ms_symbol_server_converter.cc 59 // parameters passed to sscanf and sscanf_s are only compatible as long as
62 #define SSCANF sscanf_s
64 #define SSCANF sscanf
75 if (SSCANF(identifier.c_str(),
89 if (SSCANF(identifier.c_str(), "%08X%x", &signature_, &age_) != 2) {
101 #undef SSCANF
  /external/opencv3/samples/cpp/
calibration.cpp 332 if( sscanf( argv[++i], "%u", &boardSize.width ) != 1 || boardSize.width <= 0 )
337 if( sscanf( argv[++i], "%u", &boardSize.height ) != 1 || boardSize.height <= 0 )
354 if( sscanf( argv[++i], "%f", &squareSize ) != 1 || squareSize <= 0 )
359 if( sscanf( argv[++i], "%u", &nframes ) != 1 || nframes <= 3 )
364 if( sscanf( argv[++i], "%f", &aspectRatio ) != 1 || aspectRatio <= 0 )
370 if( sscanf( argv[++i], "%u", &delay ) != 1 || delay <= 0 )
408 sscanf(s, "%d", &cameraId);
stereo_match.cpp 98 if( sscanf( argv[i] + strlen(maxdisp_opt), "%d", &numberOfDisparities ) != 1 ||
108 if( sscanf( argv[i] + strlen(blocksize_opt), "%d", &SADWindowSize ) != 1 ||
117 if( sscanf( argv[i] + strlen(scale_opt), "%f", &scale ) != 1 || scale < 0 )
  /external/squashfs-tools/squashfs-tools/
sort.c 258 * Scan for filename, don't use sscanf() and "%s" because
283 res = sscanf(line, "%d%n", &priority, &n);
293 ERROR("Sscanf failed reading sort file \"%s\" "
  /system/extras/showmap/
showmap.cpp 50 if (sscanf(line, "%lx-%lx %*s %*x %*x:%*x %*d%n", &start, &end, &name_pos) != 2) {
94 if (sscanf(line, "%63s %n", field, &len) == 1
97 if (sscanf(line + len, "%d kB", &size) == 1) {
  /external/libhevc/test/decoder/
main.c     [all...]
  /bionic/tests/
utils.h 67 if (sscanf(line, "%" SCNxPTR "-%" SCNxPTR " %4s %" SCNxPTR " %x:%x %lu %n",
  /external/elfutils/tests/
line2addr.c 127 switch (sscanf (a.arg, "%m[^:]:%d", &a.file, &a.line))
  /external/iproute2/lib/
rt_names.c 49 if (sscanf(p, "0x%x %s\n", id, namebuf) != 2 &&
50 sscanf(p, "0x%x %s #", id, namebuf) != 2 &&
51 sscanf(p, "%d %s\n", id, namebuf) != 2 &&
52 sscanf(p, "%d %s #", id, namebuf) != 2) {
  /external/iproute2/misc/
ss.c 481 if (sscanf(d->d_name, "%d%c", &pid, &crap) != 1)
505 if (sscanf(d1->d_name, "%d%c", &fd, &crap) != 1)
518 sscanf(lnk, "socket:[%u]", &ino);
673 sscanf(buf, "%*s%d", ((int *)s) + i);
891 if (sscanf(buf, "%u %*d %s %u %s",
    [all...]
  /external/libselinux/src/
label_support.c 16 * replace sscanf to read entries from spec files. The file and
  /external/libvncserver/examples/
pnmshow.c 54 sscanf(buffer,"%d %d",&width,&height);

Completed in 1597 milliseconds

1 2 3 4 5 67 8 91011>>