/external/chromium/chrome/browser/sync/engine/ |
process_commit_response_command_unittest.cc | 392 // happens to the extensions activity records. Commits could fail or succeed, 412 ExtensionsActivityMonitor::Records* records = local 414 (*records)["ABC"].extension_id = "ABC"; 415 (*records)["ABC"].bookmark_write_count = 2049U; 416 (*records)["xyz"].extension_id = "xyz"; 417 (*records)["xyz"].bookmark_write_count = 4U; 421 ExtensionsActivityMonitor::Records final_monitor_records; 426 << "Should restore records after unsuccessful bookmark commit."; 433 << "Should not restore records after successful bookmark commit." [all...] |
/external/llvm/utils/TableGen/ |
CodeGenSchedule.h | 69 // Read records don't currently have sequences, but it can be easily 115 /// 3) An implied class with a list of InstRW records that map instructions to 118 /// provided InstrRW records for this class. ItinClassDef or Writes/Reads may 139 // InstRW records associated with this class. These records may refer to an 171 // records. 173 // ItinDefList orders this processor's InstrItinData records by SchedClass idx. 182 // Array of InstrItinData records indexed by a CodeGenSchedClass index. 220 RecordKeeper &Records; 244 // combination of it's itinerary class, SchedRW list, and InstRW records [all...] |
CodeGenMapTable.cpp | 36 // 1) Iterate through all the records that derive from "InstrMapping" class. 40 // vector of RowFields values and contains vectors of Records (instructions) as 177 // the information provided in InstrMapping records. It outputs these 194 // values of the row fields and contains vector of records as values. 202 MapTableEmitter(CodeGenTarget &Target, RecordKeeper &Records, Record *IMRec): 205 InstrDefs = Records.getAllDerivedDefinitions(FilterClass); 236 // the fields listed as RowFields. It stores vectors of records as values. 499 static void emitEnums(raw_ostream &OS, RecordKeeper &Records) { 502 InstrMapVec = Records.getAllDerivedDefinitions("InstrMapping"); 505 // Iterate over all InstrMapping records and create a map between colum [all...] |
PseudoLoweringEmitter.cpp | 45 RecordKeeper &Records; 61 PseudoLoweringEmitter(RecordKeeper &R) : Records(R), Target(R) {} 270 Record *ExpansionClass = Records.getClass("PseudoInstExpansion"); 271 Record *InstructionClass = Records.getClass("Instruction"); 277 Records.getDefs().begin(), E = Records.getDefs().end(); I != E; ++I) {
|
/external/mdnsresponder/mDNSCore/ |
mDNSEmbeddedAPI.h | 138 kDNSClass_UniqueRRSet = 0x8000,// ... and the top bit indicates that all other cached records are now invalid 210 kDNSType_MAILB, // 253 Transfer mailbox records 211 kDNSType_MAILA, // 254 Transfer mail agent records 402 // Most records have a TTL of 75 minutes, so that their 80% cache-renewal query occurs once per hour. 403 // For records containing a hostname (in the name on the left, or in the rdata on the right), 410 // Some applications want to register their SRV records with a lower ttl so that in case the server 628 // Authoritative Resource Records: 631 // * Shared Resource Records do not have to be unique 632 // -- Shared Resource Records are used for DNS-SD service PTRs 636 // -- These records are announced on startup and topology changes for the benefit of passive listener [all...] |
mDNS.c | 90 // Any records bigger than this are considered 'large' records 116 // this returns true. Main use is to handle /etc/hosts records. 200 // If we still have no free records, recycle all the records we can. 201 // Enumerating the entire auth is moderately expensive, so when we do it, we reclaim all the records we can in one pass. 215 LogInfo("GetAuthEntity: Recycled %d records to reduce auth cache from %d to %d", 219 if (r->rrauth_free) // If there are records in the free list, take one 403 // The SameDomainName check above is to ignore bogus CNAME records that point right back at 409 // for either of them. This is not a problem for CNAME loops of two or more records because i [all...] |
/external/chromium_org/net/third_party/nss/ssl/ |
dtlscon.c | 162 * complete handshake records 569 * into as few records as seems reasonable 782 * a flight of records spanning an epoch boundary, e.g., 1023 dtls_InitRecvdRecords(DTLSRecvdRecords *records) 1025 PORT_Memset(records->data, 0, sizeof(records->data)); 1026 records->left = 0; 1027 records->right = DTLS_RECVD_RECORDS_WINDOW - 1; 1039 dtls_RecordGetRecvd(DTLSRecvdRecords *records, PRUint64 seq) 1044 if (seq < records->left) [all...] |
/external/chromium_org/third_party/openssl/openssl/include/openssl/ |
dtls1.h | 197 /* records being received in the current epoch */ 212 /* Received handshake records (processed and unprocessed) */ 219 /* Buffered (sent) handshake records */ 222 /* Buffered application records. 223 * Only for records between CCS and Finished
|
/external/chromium_org/third_party/openssl/openssl/ssl/ |
dtls1.h | 197 /* records being received in the current epoch */ 212 /* Received handshake records (processed and unprocessed) */ 219 /* Buffered (sent) handshake records */ 222 /* Buffered application records. 223 * Only for records between CCS and Finished
|
/external/guava/guava/src/com/google/common/cache/ |
AbstractCache.java | 144 * Records cache hits. This should be called when a cache request returns a cached value. 152 * Records cache misses. This should be called when a cache request returns a value that was 165 * Records the successful load of a new entry. This should be called when a cache request 175 * Records the failed load of a new entry. This should be called when a cache request causes 185 * Records the eviction of an entry from the cache. This should only been called when an entry
|
/external/openssl/include/openssl/ |
dtls1.h | 197 /* records being received in the current epoch */ 212 /* Received handshake records (processed and unprocessed) */ 219 /* Buffered (sent) handshake records */ 222 /* Buffered application records. 223 * Only for records between CCS and Finished
|
/external/openssl/ssl/ |
dtls1.h | 197 /* records being received in the current epoch */ 212 /* Received handshake records (processed and unprocessed) */ 219 /* Buffered (sent) handshake records */ 222 /* Buffered application records. 223 * Only for records between CCS and Finished
|
/libcore/luni/src/main/java/java/util/logging/ |
MemoryHandler.java | 26 * When the buffer is full, the earliest buffered records will be discarded. 29 * triggered so that all buffered records will be output to the target handler 30 * and normally the latter will publish the records. After the push action, the 180 * push action is triggered to output all the buffered records to the target 228 * Triggers a push action to output all buffered records to the target handler,
|
/external/chromium_org/net/dns/ |
mdns_client_impl.cc | 194 // records with the same type and name. 222 continue; // We may be able to extract other records from the packet. 229 continue; // Ignore all records not in the IN class. 282 // Remove all cached records matching the nonexistent RR types. 401 std::vector<const RecordParsed*>* records) const { 402 cache_.FindDnsRecords(rrtype, name, records, base::Time::Now()); 586 std::vector<const RecordParsed*> records; local 590 client_->core()->QueryCache(rrtype_, name_, &records); 591 for (std::vector<const RecordParsed*>::iterator i = records.begin(); 592 i != records.end() && weak_this; ++i) [all...] |
/frameworks/base/core/java/android/widget/ |
ActivityChooserModel.java | 124 * @param historicalRecords Historical records. 169 private static final String TAG_HISTORICAL_RECORDS = "historical-records"; 244 * List with historical choice records. 284 * of the share records. 293 * it is overwritten. Note that always all historical records are read in 295 * purge old records that are outside of the sliding window of past choices. 300 * Flag whether the choice records have changed. In general many clients can 617 * historical records to enforce the desired size. Thus, any 618 * records that exceed the history size will be discarded and 763 * Prunes older excessive records to guarantee maxHistorySize [all...] |
/external/chromium_org/base/test/ |
sequenced_task_runner_test_template.h | 42 // Posts the non-nestable task |task|, and records its post event. 47 // Posts the nestable task |task|, and records its post event. 52 // Posts the delayed non-nestable task |task|, and records its post event. 76 // Records a post event for task |i|. The owner is expected to be holding 80 // Records a start event for task |i|. 83 // Records a end event for task |i|.
|
/external/chromium_org/third_party/sqlite/src/test/ |
types.test | 35 # types-2.5.*: Records with a few different storage classes. 153 # can be read back OK. These should be 3 byte records. 168 # Try some 2-byte integers (4 byte records) 181 # 4-byte integers (6 byte records) 194 # 8-byte integers (10 byte records) 221 # Insert some reals. These should be 10 byte records.
|
/external/clang/utils/TableGen/ |
ClangASTNodesEmitter.cpp | 31 RecordKeeper &Records; 58 : Records(R), Root(N, SMLoc(), R), BaseSuffix(S) 156 = Records.getAllDerivedDefinitions(Root.getName()); 185 void EmitClangDeclContext(RecordKeeper &Records, raw_ostream &OS) { 202 = Records.getAllDerivedDefinitions("DeclContext"); 203 RecordVector Decls = Records.getAllDerivedDefinitions("Decl");
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
IccPhoneBookInterfaceManager.java | 37 * access ADN-like SIM records. 68 // recordSize[2] is the number of records in the EF file 89 if(DBG) logd("Cannot load ADN records"); 245 * Get the capacity of records in efid 251 * recordSizes[2] is the number of records in the EF file 314 // Check if we are trying to read ADN records
|
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/ |
ActivityChooserModel.java | 120 * @param historicalRecords Historical records. 165 private static final String TAG_HISTORICAL_RECORDS = "historical-records"; 240 * List with historical choice records. 275 * of the share records. 284 * it is overwritten. Note that always all historical records are read in 286 * purge old records that are outside of the sliding window of past choices. 291 * Flag whether the choice records have changed. In general many clients can 620 * historical records to enforce the desired size. Thus, any 621 * records that exceed the history size will be discarded and 755 * Prunes older excessive records to guarantee maxHistorySize [all...] |
/external/easymock/src/org/easymock/ |
MockControl.java | 137 * Records that the mock object will expect the last method call once, and
152 * Records that the mock object will expect the last method call once, and
173 * Records that the mock object will expect the last method call once, and
190 * Records that the mock object will expect the last method call a fixed
207 * Records that the mock object will expect the last method call a fixed
230 * Records that the mock object will expect the last method call a fixed
249 * Records that the mock object will expect the last method call a fixed
269 * Records that the mock object will by default allow the last method
283 * Records that the mock object will by default allow the last method
303 * Records that the mock object will by default allow the last method [all...] |
/cts/tests/sample/src/android/sample/cts/ |
SampleDeviceResultTest.java | 105 * Runs the workload and records the result to the report log. 110 // MeasureTime runs the workload N times and records the time taken by each run.
|
/cts/tests/tests/provider/src/android/provider/cts/contacts/ |
RawContactUtil.java | 72 * Returns a list of raw contact records. 74 * @return A list of records. Where each record is represented as an array of strings.
|
/external/chromium/chrome/browser/chromeos/ |
external_metrics.h | 53 // Records an external crash of the given string description to 57 // Records an external crash of the given string description.
|
/external/chromium/chrome/browser/metrics/ |
metrics_log.h | 37 // Records the current operating environment. Takes the list of installed 47 // Records the input text, available choices, and selected entry when the
|