HomeSort by relevance Sort by last modified time
    Searched refs:scanning (Results 1 - 25 of 156) sorted by null

1 2 3 4 5 6 7

  /system/connectivity/wificond/
Android.mk 62 scanning/channel_settings.cpp \
63 scanning/hidden_network.cpp \
64 scanning/offload_scan_callback_interface_impl.cpp \
65 scanning/pno_network.cpp \
66 scanning/pno_settings.cpp \
67 scanning/scan_result.cpp \
68 scanning/offload/scan_stats.cpp \
69 scanning/single_scan_settings.cpp \
70 scanning/scan_utils.cpp \
71 scanning/scanner_impl.cpp
    [all...]
  /external/python/cpython2/Tools/world/
world 152 scanning = 0
161 if scanning:
200 scanning = 1
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/world/
world 152 scanning = 0
161 if scanning:
200 scanning = 1
  /prebuilts/go/darwin-x86/src/bufio/
example_test.go 34 // Use a Scanner to implement a simple word-count utility by scanning the
40 // Set the split function for the scanning operation.
68 // Set the split function for the scanning operation.
scan.go 20 // functions are defined in this package for scanning a file into
24 // Scanning stops unrecoverably at EOF, the first I/O error, or a token too
50 // while scanning lines, SplitFunc can return (0, nil, nil) to signal the
54 // If the returned error is non-nil, scanning stops and the error
112 // with the error is the last token and scanning should stop after this one.
113 // After ErrFinalToken is received by Scan, scanning stops with no error.
124 // occurred during scanning, except that if it was io.EOF, Err
247 // Buffer sets the initial buffer to use when scanning and the maximum
248 // size of buffer that may be allocated during scanning. The maximum
255 // Buffer panics if it is called after scanning has started
    [all...]
  /prebuilts/go/linux-x86/src/bufio/
example_test.go 34 // Use a Scanner to implement a simple word-count utility by scanning the
40 // Set the split function for the scanning operation.
68 // Set the split function for the scanning operation.
scan.go 20 // functions are defined in this package for scanning a file into
24 // Scanning stops unrecoverably at EOF, the first I/O error, or a token too
50 // while scanning lines, SplitFunc can return (0, nil, nil) to signal the
54 // If the returned error is non-nil, scanning stops and the error
112 // with the error is the last token and scanning should stop after this one.
113 // After ErrFinalToken is received by Scan, scanning stops with no error.
124 // occurred during scanning, except that if it was io.EOF, Err
247 // Buffer sets the initial buffer to use when scanning and the maximum
248 // size of buffer that may be allocated during scanning. The maximum
255 // Buffer panics if it is called after scanning has started
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
scan.h 2 * WPA Supplicant - Scanning
21 int scanning);
  /packages/apps/Music/src/com/android/music/
ScanningProgress.java 66 setContentView(R.layout.scanning);
  /prebuilts/go/darwin-x86/src/fmt/
scan_test.go 471 t.Errorf("got error scanning %q: %s%s", test.text, err, m)
485 t.Errorf("scanning %q: expected %#v got %#v, type %T", test.text, test.out, val, val)
541 t.Errorf("expected overflow scanning %q", test.text)
545 t.Errorf("expected overflow error scanning %q: %s", test.text, err)
557 t.Errorf("got error scanning %q: %s", text, err)
560 t.Errorf("count error scanning %q: got %d", text, n)
563 t.Errorf("didn't get NaNs scanning %q: got %g %g %g", text, f, f32, f64)
580 t.Errorf("got error scanning %q: %s", text, err)
583 t.Errorf("count error scanning %q: got %d", text, n)
590 t.Errorf("didn't get right Infs scanning %q: got %g %g %g", text, f, f32, f64
    [all...]
scan.go 19 // Scanners may do rune-at-a-time scanning or ask the ScanState
46 // called by the scanning routines and a valid implementation of
67 // Scanln is similar to Scan, but stops scanning at a newline and
103 // Sscanln is similar to Sscan, but stops scanning at a newline and
128 // Fscanln is similar to Fscan, but stops scanning at a newline and
148 // scanError represents an error generated by the scanning software.
222 // It is called in cases such as string scanning where an EOF is a
296 // notSpace is the default scanning function used in Token.
302 // characters in keeping with the current scanning mode set by format strings
378 return errors.New("fmt: scanning called UnreadRune with no rune available"
    [all...]
  /prebuilts/go/linux-x86/src/fmt/
scan_test.go 471 t.Errorf("got error scanning %q: %s%s", test.text, err, m)
485 t.Errorf("scanning %q: expected %#v got %#v, type %T", test.text, test.out, val, val)
541 t.Errorf("expected overflow scanning %q", test.text)
545 t.Errorf("expected overflow error scanning %q: %s", test.text, err)
557 t.Errorf("got error scanning %q: %s", text, err)
560 t.Errorf("count error scanning %q: got %d", text, n)
563 t.Errorf("didn't get NaNs scanning %q: got %g %g %g", text, f, f32, f64)
580 t.Errorf("got error scanning %q: %s", text, err)
583 t.Errorf("count error scanning %q: got %d", text, n)
590 t.Errorf("didn't get right Infs scanning %q: got %g %g %g", text, f, f32, f64
    [all...]
scan.go 19 // Scanners may do rune-at-a-time scanning or ask the ScanState
46 // called by the scanning routines and a valid implementation of
67 // Scanln is similar to Scan, but stops scanning at a newline and
103 // Sscanln is similar to Sscan, but stops scanning at a newline and
128 // Fscanln is similar to Fscan, but stops scanning at a newline and
148 // scanError represents an error generated by the scanning software.
222 // It is called in cases such as string scanning where an EOF is a
296 // notSpace is the default scanning function used in Token.
302 // characters in keeping with the current scanning mode set by format strings
378 return errors.New("fmt: scanning called UnreadRune with no rune available"
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
GalleryPicker.java 128 public void updateScanningDialog(boolean scanning) {
130 if (prevScanning == scanning && mAdapter.mItems.size() == 0) return;
135 } else if (scanning && mAdapter.mItems.size() == 0) {
164 private void rebake(boolean unmounted, boolean scanning) {
165 if (unmounted == mUnmounted && scanning == mScanning) return;
168 mScanning = scanning;
291 // Assume the storage is mounted and not scanning.
361 final boolean scanning =
365 checkScanningFinished(scanning);
371 private void checkScanningFinished(boolean scanning) {
    [all...]
  /prebuilts/go/darwin-x86/src/math/big/
example_test.go 34 log.Println("error scanning value:", err)
47 log.Println("error scanning value:", err)
60 log.Println("error scanning value:", err)
natconv_test.go 236 t.Errorf("scanning pi: %s", err)
239 t.Errorf("scanning pi: got %s", s)
291 b.Fatalf("scanning: got %s; want %s", s, t)
  /prebuilts/go/linux-x86/src/math/big/
example_test.go 34 log.Println("error scanning value:", err)
47 log.Println("error scanning value:", err)
60 log.Println("error scanning value:", err)
natconv_test.go 236 t.Errorf("scanning pi: %s", err)
239 t.Errorf("scanning pi: got %s", s)
291 b.Fatalf("scanning: got %s; want %s", s, t)
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_old.c 274 else if (!strcmp(method, "scanning"))
464 * wpa_supplicant_dbus_notify_scanning - send scanning status
468 * Notify listeners of interface scanning state changes
474 dbus_bool_t scanning = wpa_s->scanning ? TRUE : FALSE; local
482 "Scanning");
490 DBUS_TYPE_BOOLEAN, &scanning,
  /external/caliper/lib/
jersey-core-1.11.jar 
  /developers/build/prebuilts/gradle/BluetoothChat/Application/src/main/java/com/example/android/bluetoothchat/
DeviceListActivity.java 148 // Indicate scanning in the title
150 setTitle(R.string.scanning);
  /developers/samples/android/connectivity/bluetooth/BluetoothChat/Application/src/main/java/com/example/android/bluetoothchat/
DeviceListActivity.java 148 // Indicate scanning in the title
150 setTitle(R.string.scanning);
  /development/samples/BluetoothChat/src/com/example/android/BluetoothChat/
DeviceListActivity.java 139 // Indicate scanning in the title
141 setTitle(R.string.scanning);
  /development/samples/browseable/BluetoothChat/src/com.example.android.bluetoothchat/
DeviceListActivity.java 148 // Indicate scanning in the title
150 setTitle(R.string.scanning);
  /prebuilts/go/darwin-x86/src/cmd/doc/
dirs.go 16 // Dirs is a structure for scanning the directory tree.

Completed in 889 milliseconds

1 2 3 4 5 6 7