HomeSort by relevance Sort by last modified time
    Searched full:scan (Results 26 - 50 of 2771) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/installer/util/
chrome_frame_operations.cc 31 for (const PrefToOption* scan = &map[0], *end = &map[arraysize(map)];
32 scan != end; ++scan) {
33 if (prefs.GetBool(scan->pref_name, &pref_value) && pref_value)
34 options->insert(scan->option_name);
49 for (const FlagToOption* scan = &map[0], *end = &map[arraysize(map)];
50 scan != end; ++scan) {
51 if (uninstall_command.HasSwitch(scan->flag_name))
52 options->insert(scan->option_name)
    [all...]
  /ndk/build/tools/
build-analyzer.sh 17 # This shell script is used to copy clang tool "scan-build" and "scan-view"
53 SCAN_BUILD_SRC_DIR=$SRC_DIR/$TOOLCHAIN/clang/tools/scan-build
55 echo "ERROR: Source directory does not contain scan-build: $SCAN_BUILD_SRC_DIR"
59 SCAN_VIEW_SRC_DIR=$SRC_DIR/$TOOLCHAIN/clang/tools/scan-view
61 echo "ERROR: Source directory does not contain scan-view: $SCAN_VIEW_SRC_DIR"
103 SCAN_BUILD_SUBDIR="prebuilt/common/scan-build"
106 rm -f $NDK_DIR/$SCAN_BUILD_SUBDIR/scan-build.1
108 SCAN_VIEW_SUBDIR="prebuilt/common/scan-view"
113 ARCHIVE="scan-build-view.tar.bz2
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
nasm-eval.c 25 static scanner scan; /* Address of scanner routine */ variable
83 i = scan(scpriv, tokval);
105 i = scan(scpriv, tokval);
126 i = scan(scpriv, tokval);
150 i = scan(scpriv, tokval);
192 i = scan(scpriv, tokval);
213 i = scan(scpriv, tokval);
234 i = scan(scpriv, tokval);
257 i = scan(scpriv, tokval);
286 i = scan(scpriv, tokval)
    [all...]
  /frameworks/base/services/java/com/android/server/wifi/
README.txt 5 WifiSettingsStore: Tracks the various settings (wifi toggle, airplane toggle, tethering toggle, scan mode toggle) and provides API to figure if wifi should be turned on or off.
9 WifiNotificationController: Controls whether the open network notification is displayed or not based on the scan results.
16 Scan-only mode with Wi-Fi turned off:
18 - Once the user has his device provisioned, turning off Wi-Fi from settings or from a third party app will show up a dialog reminding the user that scan mode will be on even though Wi-Fi is being turned off. The user has the choice to turn this notification off.
19 - In the scan mode, the device continues to allow scanning from any app with Wi-Fi turned off. This is done by disabling all networks and allowing only scans to be passed.
  /external/wpa_supplicant_8/wpa_supplicant/
scan.c 24 #include "scan.h"
128 "end of scan list - go back to beginning");
213 * wpa_supplicant_trigger_scan - Request driver to start a scan
215 * @params: Scan parameters
244 wpa_dbg(wpa_s, MSG_DEBUG, "Starting delayed sched scan");
256 wpa_dbg(wpa_s, MSG_DEBUG, "Sched scan timeout - stopping it");
336 /* Optimize provisioning state scan based on GO information */
339 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Scan only GO "
347 wpa_dbg(wpa_s, MSG_DEBUG, "P2P: Scan only common "
361 * Optimize post-provisioning scan based on channel use
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
where7.test 25 # and the number of full-scan steps.
29 lappend r scan [db status step] sort [db status sort]
34 return "$r scan [db status step] sort [db status sort]"
56 } {2 3 scan 0 sort 1}
61 } {2 3 scan 4 sort 0}
66 } {2 3 scan 4 sort 0}
71 } {2 3 scan 0 sort 1}
76 } {2 3 scan 0 sort 1}
81 } {2 5 scan 0 sort 0}
86 } {2 4 5 scan 0 sort 0
    [all...]
  /external/e2fsprogs/debugfs/
icheck.c 60 ext2_inode_scan scan = 0; local
94 retval = ext2fs_open_inode_scan(current_fs, 0, &scan);
96 com_err("icheck", retval, "while opening inode scan");
101 retval = ext2fs_get_next_inode(scan, &ino, &inode);
104 com_err("icheck", retval, "while starting inode scan");
144 retval = ext2fs_get_next_inode(scan, &ino, &inode);
148 "while doing inode scan");
165 if (scan)
166 ext2fs_close_inode_scan(scan);
ncheck.c 57 ext2_inode_scan scan = 0; local
88 retval = ext2fs_open_inode_scan(current_fs, 0, &scan);
90 com_err("ncheck", retval, "while opening inode scan");
95 retval = ext2fs_get_next_inode(scan, &ino, &inode);
98 com_err("ncheck", retval, "while starting inode scan");
139 retval = ext2fs_get_next_inode(scan, &ino, &inode);
144 "while doing inode scan");
151 if (scan)
152 ext2fs_close_inode_scan(scan);
  /external/e2fsprogs/lib/ext2fs/
tst_iscan.c 2 * tst_inode.c --- this function tests the inode scan function
63 * Setup the variables for doing the inode scan test.
137 ext2_inode_scan scan; local
141 retval = ext2fs_open_inode_scan(test_fs, 8, &scan);
143 com_err("iterate", retval, "While opening inode scan");
147 retval = ext2fs_get_next_inode(scan, &ino, &inode);
153 retval = ext2fs_get_next_inode(scan, &ino, &inode);
165 ext2fs_close_inode_scan(scan);
215 printf("Inode scan tested OK!\n");
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCUnusedIVarsChecker.cpp 33 static void Scan(IvarUsageMap& M, const Stmt *S) {
47 Scan(M, BE->getBody());
57 Scan(M, sub);
61 Scan(M, *I);
64 static void Scan(IvarUsageMap& M, const ObjCPropertyImplDecl *D) {
78 static void Scan(IvarUsageMap& M, const ObjCContainerDecl *D) {
79 // Scan the methods for accesses.
82 Scan(M, (*I)->getBody());
85 // Scan for @synthesized property methods that act as setters/getters
89 Scan(M, *I)
    [all...]
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaScannerReceiver.java 39 // Scan both internal and external storage
40 scan(context, MediaProvider.INTERNAL_VOLUME); method
41 scan(context, MediaProvider.EXTERNAL_VOLUME); method
62 // scan whenever any volume is mounted
63 scan(context, MediaProvider.EXTERNAL_VOLUME); method
72 private void scan(Context context, String volume) { method in class:MediaScannerReceiver
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestInterpretedLexing.java 86 Token result = engine.scan("A");
89 result = engine.scan("A");
100 Token result = engine.scan("A");
111 Token result = engine.scan("INT");
114 result = engine.scan("INT");
124 Token result = engine.scan("A");
126 result = engine.scan("A");
129 result = engine.scan("A");
132 result = engine.scan("A");
135 result = engine.scan("A")
    [all...]
  /external/chromium_org/tools/cr/cr/
loader.py 5 """Module scan and load system.
7 The main interface to this module is the Scan function, which triggers a
8 recursive scan of all packages and modules below cr, with modules being
30 """Scan the modules for things that need wiring up automatically."""
53 # First scan, add the scanned marker set.
56 for scan in scan_hooks:
57 if scan not in scanner_tags:
58 scanner_tags.add(scan)
59 scan(module)
63 """Scan a package for child packages and modules.""
    [all...]
  /external/chromium_org/chrome/tools/build/win/
server.rules 8 Name="Scan Server DLLs"
9 DisplayName="Scan Server DLLs"
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/examples/
repeater.re 7 int scan(char *s, int l){
24 #define do_scan(str) scan(str, strlen(str))
  /external/e2fsprogs/e2fsck/
scantest.c 2 * scantest.c - test the speed of the inode scan routine
96 ext2_inode_scan scan; local
114 retval = ext2fs_open_inode_scan(fs, 0, &scan);
116 com_err(argv[0], retval, _("while opening inode scan"));
119 retval = ext2fs_get_next_inode(scan, &ino, &inode);
121 com_err(argv[0], retval, _("while starting inode scan"));
129 retval = ext2fs_get_next_inode(scan, &ino, &inode);
132 _("while doing inode scan"));
  /external/kernel-headers/original/linux/mtd/
bbm.h 29 * @version: version read from the bbt page during scan
66 /* The bbt is at the given page, else we must scan for the bbt */
68 /* The bbt is at the given page, else we must scan for the bbt */
78 /* Scan block empty during good / bad block scan */
87 /* The maximum number of blocks to scan for a bbt */
102 * @badblock_pattern: [REPLACEABLE] bad block scan pattern used for
103 * initial bad block scan
  /external/mockito/src/org/mockito/internal/configuration/injection/scanner/
InjectMocksScanner.java 18 * Scan field for injection.
40 mockDependentFields.addAll(scan()); method
44 * Scan fields annotated by @InjectMocks
48 private Set<Field> scan() { method in class:InjectMocksScanner
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/api/
armVCM4P2_ZigZag_Tables.h 14 * Description: Declares Tables used for Zigzag scan in MP4P2 codec.
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/api/
armVCM4P2_ZigZag_Tables.h 14 * Description: Declares Tables used for Zigzag scan in MP4P2 codec.
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/api/
armVCM4P2_ZigZag_Tables.h 14 * Description: Declares Tables used for Zigzag scan in MP4P2 codec.
  /external/jpeg/
wizard.doc 113 Multiple Scan / Progression Control
116 By default, cjpeg emits a single-scan sequential JPEG file. The
118 of progression parameters. You can create multiple-scan sequential JPEG
122 -scans file Use the scan sequence given in the named file.
124 The specified file should be a text file containing a "scan script".
126 Each entry in the script defines one scan. A scan definition specifies
127 the components to be included in the scan, and for progressive JPEG it also
128 specifies the progression parameters Ss,Se,Ah,Al for the scan. Scan
    [all...]
  /external/qemu/distrib/jpeg-6b/
wizard.doc 113 Multiple Scan / Progression Control
116 By default, cjpeg emits a single-scan sequential JPEG file. The
118 of progression parameters. You can create multiple-scan sequential JPEG
122 -scans file Use the scan sequence given in the named file.
124 The specified file should be a text file containing a "scan script".
126 Each entry in the script defines one scan. A scan definition specifies
127 the components to be included in the scan, and for progressive JPEG it also
128 specifies the progression parameters Ss,Se,Ah,Al for the scan. Scan
    [all...]
  /external/bison/src/
Makefile.am 61 scan-code.h scan-code-c.c \
62 scan-gram.h scan-gram-c.c \
63 scan-skel.h scan-skel-c.c \
72 EXTRA_bison_SOURCES = scan-code.l scan-skel.l scan-gram.l
76 scan-code.c
    [all...]
  /external/wpa_supplicant_8/src/drivers/
android_drv.h 36 /* Scan interval size is scan interval section type + scan interval length

Completed in 1422 milliseconds

12 3 4 5 6 7 8 91011>>