/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/ |
BatchingNamedTaskExecutor.java | 61 * Instructs the executor to submit the next batch of results. 65 NamedTask[] batch = new NamedTask[0]; local 69 batch = nextTasks.toArray(batch); 71 if (DBG) Log.d(TAG, "Dispatching batch of " + count); 74 for (NamedTask task : batch) {
|
/system/core/fastboot/ |
genkey.sh | 16 -batch -days 10000
|
/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
JDBCStatement.java | 12 private ArrayList<String> batch; field in class:JDBCStatement 18 this.batch = null; 177 if (batch == null) { 178 batch = new ArrayList<String>(1); 180 batch.add(sql); 184 if (batch == null) { 187 int[] ret = new int[batch.size()]; 194 execute((String) batch.get(i)); 201 throw new BatchUpdateException("batch failed", ret); 207 if (batch != null) [all...] |
JDBCPreparedStatement.java | 27 private ArrayList<BatchArg> batch; field in class:JDBCPreparedStatement 35 this.batch = null; 386 if (batch == null) { 387 batch = new ArrayList<BatchArg>(args.length); 390 batch.add(new BatchArg(args[i], blobs[i])); 395 if (batch == null) { 398 int[] ret = new int[batch.size() / args.length]; 406 BatchArg b = (BatchArg) batch.get(index++); 418 throw new BatchUpdateException("batch failed", ret); 424 if (batch != null) [all...] |
/external/webkit/Tools/BuildSlaveSupport/gtk/crashmon/ |
crashmon | 63 gdb -ex "thread apply all bt" --batch "${fullprogrampath}" "${coredump}" 2>&1 \
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
ContactsTransaction.java | 31 * transaction is involved in, and whether the operation being performed is a batch operation. 36 * Whether this transaction is encompassing a batch of operations. If we're in batch mode, 37 * transactional operations from non-batch callers are ignored. 57 * Creates a new transaction object, optionally marked as a batch transaction. 58 * @param batch Whether the transaction is in batch mode. 60 public ContactsTransaction(boolean batch) { 61 mBatch = batch; 134 * @param callerIsBatch Whether this is being performed in the context of a batch operation [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
BluetoothOppService.java | 562 * Add info into a batch. The logic is 564 * 2) If there is no batch, create a batch and insert this transfer into batch, 565 * then run the batch 566 * 3) If there is existing batch and timestamp match, insert transfer into batch 567 * 4) If there is existing batch and timestamp does not match, create a new batch and 600 if (V) Log.v(TAG, "Service create new Batch " + newBatch.mI 700 BluetoothOppBatch batch = mBatchs.get(i); local 708 BluetoothOppBatch batch = mBatchs.get(i); local 753 BluetoothOppBatch batch = mBatchs.get(i); local [all...] |
/external/grub/util/ |
grub-md5-crypt | 91 $grub_shell --batch --device-map=/dev/null <<EOF \
|
grub-md5-crypt.in | 91 $grub_shell --batch --device-map=/dev/null <<EOF \
|
grub-install.in | 339 $grub_shell --batch $no_floppy --device-map=$device_map <<EOF >$log_file 429 $grub_shell --batch $no_floppy --device-map=$device_map <<EOF >$log_file 454 $grub_shell --batch $no_floppy --device-map=$device_map <<EOF >$log_file
|
grub-image | 131 cat <<EOF | $grub_shell --batch --device-map=/dev/null
|
grub-image.in | 131 cat <<EOF | $grub_shell --batch --device-map=/dev/null
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
SelectionManager.java | 152 int batch = 50; local 156 int count = index + batch < total 157 ? batch 163 index += batch;
|
/external/iproute2/ip/ |
ip.c | 43 " ip [ -force ] -batch filename\n" 98 static int batch(const char *name) function 211 } else if (matches(opt, "-batch") == 0) { 244 return batch(batch_file);
|
/ndk/sources/host-tools/sed-4.2.1/build-aux/ |
texi2dvi | 47 -b, --batch no interaction 53 -q, --quiet no output unless errors (implies --batch) 78 batch=false # eval for batch mode 145 -b | --b*) batch=eval;; 146 -q | -s | --q* | --s*) quiet=t; batch=eval;; 576 $batch tex_args="\\${escape}nonstopmode\ \\${escape}input"
|
/build/core/ |
legacy_prebuilts.mk | 35 batch \
|
/external/kernel-headers/original/linux/ |
rcupdate.h | 65 long cur; /* Current batch number. */ 66 long completed; /* Number of the last completed batch */ 67 int next_pending; /* Is the next batch already waiting? */ 71 /* for current batch to proceed. */ 74 /* Is batch a before batch b ? */ 80 /* Is batch a after batch b ? */ 89 * curlist - current batch for which quiescent cycle started if any 93 long quiescbatch; /* Batch # for grace period * 98 long batch; \/* Batch # for current RCU batch *\/ member in struct:rcu_data [all...] |
/external/iproute2/tc/ |
tc.c | 215 " tc [-force] -batch filename\n" 249 static int batch(const char *name) function 325 } else if (matches(argv[1], "-batch") == 0) { 339 return batch(batchfile);
|
/external/pcre/ |
RunTest.bat | 5 @rem MS Windows batch file to run pcretest on testfiles with the correct
|
/sdk/avdlauncher/ |
Android.mk | 8 # Eventually it should simply replace the batch file.
|
/sdk/sdklauncher/ |
Android.mk | 8 # Eventually it should simply replace the batch file.
|
/external/chromium/net/tools/testserver/ |
chromiumsync.py | 467 next query. Entries is the batch of entries meeting the current 469 left on the server after this batch. 480 batch = new_changes[:self._BATCH_SIZE] 481 if not batch: 485 # Restrict batch to requested types. Tombstones are untyped 487 filtered = [DeepCopyOfProto(item) for item in batch 491 # batch, even if that item was filtered out. 492 return (batch[-1].version, filtered, len(new_changes) - len(batch)) 557 A commit batch sent by a client may contain new items for which th [all...] |
/external/srec/srec/crec/ |
srec.c | 79 altword_token* batch, 86 if (batch->costbasis == MAXcostdata / 2) 88 free_altword_token(rec, batch); 91 /* a flag to check whether we already pruned this batch would be nice */ 94 awtokenp = &batch->next_token; 95 for (awtoken = batch->next_token; awtoken != AWTNULL; awtoken = next_awtoken) 98 if ((bigcostdata)batch->costbasis + awtoken->costdelta > costlimit) 109 if ((bigcostdata)(batch->costbasis) + batch->costdelta < costlimit) 113 else if (batch->next_token != AWTNULL [all...] |
/external/openssl/apps/ |
CA.sh | 132 $CA -create_serial -out ${CATOP}/$CACERT $CADAYS -batch \
|
ca.c | 175 " -batch - Don't ask questions\n", 202 char *enddate, long days, int batch, char *ext_sect, CONF *conf, 208 char *startdate, char *enddate, long days, int batch, 221 int email_dn, char *startdate, char *enddate, long days, int batch, 292 int batch=0; local 440 else if (strcmp(*argv,"-batch") == 0) 441 batch=1; 1190 batch = 1; 1198 db,serial,subj,chtype,multirdn,email_dn,startdate,enddate,days,batch, 1218 serial,subj,chtype,multirdn,email_dn,startdate,enddate,days,batch, [all...] |