/frameworks/base/services/core/java/com/android/server/notification/ |
ZenLog.java | 67 public static void traceIntercepted(NotificationRecord record, String reason) { 68 if (record != null && record.isIntercepted()) return; // already logged 69 append(TYPE_INTERCEPTED, record.getKey() + "," + reason); 72 public static void traceNotIntercepted(NotificationRecord record, String reason) { 73 if (record != null && record.isUpdate) return; // already logged 74 append(TYPE_NOT_INTERCEPTED, record.getKey() + "," + reason); 126 public static void traceDisableEffects(NotificationRecord record, String reason) { 127 append(TYPE_DISABLE_EFFECTS, record.getKey() + "," + reason) [all...] |
/external/llvm/lib/Bitcode/Reader/ |
BitstreamReader.cpp | 100 /// skipRecord - Read the current record and discard it. 148 // record to empty and return. 172 // Read the record code first. 173 assert(Abbv->getNumOperandInfos() != 0 && "no record code in abbreviation?"); 229 // record to empty and return. 282 "Fixed or VBR abbrev record with size > MaxChunkData"); 290 report_fatal_error("Abbrev record with no operands"); 301 SmallVector<uint64_t, 64> Record; 314 case llvm::BitstreamEntry::Record: 331 // Read a record [all...] |
/external/llvm/lib/ProfileData/ |
InstrProf.cpp | 196 // Merge Value Profile data from Src record to this record for ValueKind. 285 uint32_t getNumValueKindsInstrProf(const void *Record) { 286 return reinterpret_cast<const InstrProfRecord *>(Record)->getNumValueKinds(); 289 uint32_t getNumValueSitesInstrProf(const void *Record, uint32_t VKind) { 290 return reinterpret_cast<const InstrProfRecord *>(Record) 294 uint32_t getNumValueDataInstrProf(const void *Record, uint32_t VKind) { 295 return reinterpret_cast<const InstrProfRecord *>(Record) 330 uint32_t ValueProfData::getSize(const InstrProfRecord &Record) { 331 InstrProfRecordClosure.Record = &Record [all...] |
/external/v8/src/profiler/ |
cpu-profiler.cc | 46 TickSampleEventRecord record(last_code_event_id_.Value()); 52 record.sample.Init(isolate, regs, TickSample::kSkipCEntryFrame); 53 ticks_from_vm_buffer_.Enqueue(record); 58 TickSampleEventRecord record(last_code_event_id_.Value()); 67 record.sample.Init(isolate, regs, TickSample::kSkipCEntryFrame); 68 ticks_from_vm_buffer_.Enqueue(record); 79 CodeEventsContainer record; local 80 if (events_buffer_.Dequeue(&record)) { 81 switch (record.generic.type) { 84 record.clss##_.UpdateCodeMap(generator_->code_map()); 103 TickSampleEventRecord record; local 109 const TickSampleEventRecord* record = ticks_buffer_.Peek(); local [all...] |
/system/bt/stack/btm/ |
btm_dev.c | 235 ** Description Look for the record in the device database for the record 238 ** Returns Pointer to the record or NULL 293 ** Description Mark device record as not used 384 ** Description Look for the record in the device database for the record 387 ** Returns Pointer to the record or NULL 407 // If a LE random address is looking for device record 421 ** Description Look for the record in the device database for the record [all...] |
/frameworks/base/docs/html/training/connect-devices-wirelessly/ |
nsd-wifi-direct.jd | 83 Map<String,String> record = new HashMap<String,String>(); 84 record.put("listenport", String.valueOf(SERVER_PORT)); 85 record.put("buddyname", "John Doe" + (int) (Math.random() * 1000)); 86 record.put("available", "visible"); 92 WifiP2pDnsSdServiceInfo.newInstance("_test", "_presence._tcp", record); 116 incoming records. This record can optionally be broadcast by other 120 record contains a "buddyname" field, populated with the user's identity.</p> 130 * record: TXT record dta as a map of key/value pairs. 135 String fullDomain, Map<String,String> record, WifiP2pDevice device) [all...] |
/libcore/ojluni/src/main/java/sun/security/ssl/ |
EngineOutputRecord.java | 59 * Default constructor makes a record supporting the maximum 60 * SSL record size. It allocates the header bytes directly. 62 * @param type the content type for the record 91 throw new RuntimeException("Unknown record type: " + type); 241 * data in the first record of every payload, and the rest in 242 * subsequent record(s). Note that the issues have been solved in 245 * It is not necessary to split the very first application record of 252 * need a one-byte record at first, the 2nd record size should be 253 * equal to or less than Record.maxDataSizeMinusOneByteRecord [all...] |
/ndk/sources/host-tools/nawk-20071023/ |
lib.c | 37 char *record; variable 49 int donerec; /* 1 = record is valid (no flds have changed) */ 60 if ( (record = (char *) malloc(n)) == NULL 66 fldtab[0]->sval = record; 104 int getrec(char **pbuf, int *pbufsize, int isrecord) /* get next input record */ 105 { /* note: cares whether buf == record */ 145 if (c != 0 || buf[0] != '\0') { /* normal record */ 149 fldtab[0]->sval = buf; /* buf == record */ 182 int readrec(char **pbuf, int *pbufsize, FILE *inf) /* read one record into buf */ 202 FATAL("input record `%.30s...' too long", buf) [all...] |
/frameworks/base/media/java/android/media/tv/ |
TvInputManager.java | 1264 TvInputCallbackRecord record = it.next(); local 1426 SessionCallbackRecord record = new SessionCallbackRecord(callback, handler); local [all...] |
/external/llvm/include/llvm/ProfileData/ |
InstrProfReader.h | 37 InstrProfRecord Record; 47 InstrProfRecord &operator*() { return Record; } 48 InstrProfRecord *operator->() { return &Record; } 60 /// Read the header. Required before reading first record. 62 /// Read a single record. 63 virtual std::error_code readNextRecord(InstrProfRecord &Record) = 0; 110 /// are separated by one or more blank lines, and record fields are separated by 113 /// Each record consists of a function name, a function hash, a number of 124 std::error_code readValueProfileData(InstrProfRecord &Record); 135 /// Read a single record [all...] |
/external/sfntly/cpp/src/sfntly/ |
font.cc | 128 for (HeaderTagSortedSet::iterator record = sorted_headers.begin(), 130 record != record_end; ++record) { 131 fos->WriteULong((*record)->tag()); 132 fos->WriteULong((int32_t)((*record)->checksum())); 133 fos->WriteULong((*record)->offset()); 134 fos->WriteULong((*record)->length()); 142 for (TableHeaderList::iterator record = table_headers->begin(), 144 record != end_of_headers; ++record) { [all...] |
/external/avahi/avahi-core/ |
resolve-address.c | 103 AvahiRecord *record, 114 assert(record); 115 assert(record->key->type == AVAHI_DNS_TYPE_PTR); 130 r->ptr_record = avahi_record_ref(record); 138 assert(record); 139 assert(record->key->type == AVAHI_DNS_TYPE_PTR); 141 if (r->ptr_record && avahi_record_equal_no_ttl(record, r->ptr_record)) {
|
/external/chromium-trace/catapult/telemetry/telemetry/timeline/ |
tracing_config.py | 11 RECORD_AS_MUCH_AS_POSSIBLE = 'record-as-much-as-possible' 12 RECORD_CONTINUOUSLY = 'record-continuously' 13 RECORD_UNTIL_FULL = 'record-until-full' 18 RECORD_UNTIL_FULL: 'record-until-full', 19 RECORD_CONTINUOUSLY: 'record-continuously', 20 RECORD_AS_MUCH_AS_POSSIBLE: 'record-as-much-as-possible', 74 record modes in chrome.
|
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/ |
customhandlers.py | 22 /web-page-replay-command-[record|replay|status] 24 - Change the server mode to either record or replay. 25 + When switching to record, the http_archive is cleared. 150 """Add the ability to change the server mode (e.g. to record mode). 162 the replay server from record mode to replay mode. 171 url_suffix: string that is after the handler prefix (e.g. 'record') 177 if command == 'record':
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/services/ |
result.py | 73 def process_record(self, record, path, get_file=True): 74 self.log_message(record, path) 75 self.calculate_stats(record) 76 outputs = record['OutputKey'].split(',') 77 if 'OutputBucket' in record: 78 bucket = boto.lookup('s3', record['OutputBucket']) 80 bucket = boto.lookup('s3', record['Bucket'])
|
/external/llvm/utils/TableGen/ |
CodeGenTarget.cpp | 24 #include "llvm/TableGen/Record.h" 37 /// record corresponds to. 38 MVT::SimpleValueType llvm::getValueType(Record *Rec) { 133 /// getQualifiedName - Return the name of the specified record, with a 134 /// namespace qualifier if the record contains one. 136 std::string llvm::getQualifiedName(const Record *R) { 149 std::vector<Record*> Targets = Records.getAllDerivedDefinitions("Target"); 175 Record *CodeGenTarget::getInstructionSet() const { 182 Record *CodeGenTarget::getAsmParser() const { 183 std::vector<Record*> LI = TargetRec->getValueAsListOfDefs("AssemblyParsers") [all...] |
/external/mesa3d/src/gallium/winsys/svga/drm/ |
vmw_screen_svga.c | 247 const SVGA3dCapsRecord *record; local 249 record = (const SVGA3dCapsRecord *) (capsBlock + offset); 250 if ((record->header.type >= SVGA3DCAPS_RECORD_DEVCAPS_MIN) && 251 (record->header.type <= SVGA3DCAPS_RECORD_DEVCAPS_MAX) && 252 (!capsRecord || (record->header.type > capsRecord->header.type))) { 253 capsRecord = record; 261 * Calculate the number of caps from the size of the record.
|
/frameworks/base/core/java/android/app/backup/ |
BackupDataInput.java | 29 * representing one named record as previously stored by the agent's 49 * // process this kind of record here 123 * @throws IllegalStateException if the next record header has not yet been read 137 * @return The size of the record's raw data, in bytes 138 * @throws IllegalStateException if the next record header has not yet been read 149 * Read a record's raw data from the restore stream. The record's header must first
|
/hardware/libhardware/include/hardware/ |
memtrack.h | 91 * used by a single process. Only zero or one of these may be set in a record. 92 * If none are set, record is assumed to count shared + private memory. 101 * or separate video memory. Only zero or one of these may be set in a record. 102 * If none are set, record is assumed to count system + dedicated memory. 109 * memory that is protected. Only zero or one of these may be set in a record. 110 * If none are set, record is assumed to count secure + nonsecure memory. 131 * (*getMemory)() expects an array of record objects and populates up to
|
/packages/apps/Tag/src/com/android/apps/tag/record/ |
UriRecord.java | 17 package com.android.apps.tag.record; 52 * A parsed record containing a Uri. 129 * record containing a URI. 131 public static UriRecord parse(NdefRecord record) { 132 Uri uri = record.toUri(); 137 public static boolean isUri(NdefRecord record) { 138 return record.toUri() != null;
|
/prebuilts/go/darwin-x86/src/cmd/trace/ |
pprof.go | 26 // Record represents one entry in pprof-like profiles. 27 type Record struct { 40 prof := make(map[uint64]Record) 61 prof := make(map[uint64]Record) 88 prof := make(map[uint64]Record) 110 prof := make(map[uint64]Record) 126 func serveSVGProfile(w http.ResponseWriter, r *http.Request, prof map[uint64]Record) {
|
/prebuilts/go/darwin-x86/src/encoding/csv/ |
writer.go | 23 // If UseCRLF is true, the Writer ends each record with \r\n instead of \n. 38 // Writer writes a single CSV record to w along with any necessary quoting. 39 // A record is a slice of strings with each string being one field. 40 func (w *Writer) Write(record []string) (err error) { 41 for n, field := range record { 108 for _, record := range records { 109 err = w.Write(record)
|
/prebuilts/go/linux-x86/src/cmd/trace/ |
pprof.go | 26 // Record represents one entry in pprof-like profiles. 27 type Record struct { 40 prof := make(map[uint64]Record) 61 prof := make(map[uint64]Record) 88 prof := make(map[uint64]Record) 110 prof := make(map[uint64]Record) 126 func serveSVGProfile(w http.ResponseWriter, r *http.Request, prof map[uint64]Record) {
|
/prebuilts/go/linux-x86/src/encoding/csv/ |
writer.go | 23 // If UseCRLF is true, the Writer ends each record with \r\n instead of \n. 38 // Writer writes a single CSV record to w along with any necessary quoting. 39 // A record is a slice of strings with each string being one field. 40 func (w *Writer) Write(record []string) (err error) { 41 for n, field := range record { 108 for _, record := range records { 109 err = w.Write(record)
|
/system/core/libziparchive/ |
zip_archive_common.h | 24 // The "end of central directory" (EOCD) record. Each archive 25 // contains exactly once such record which appears at the end of 66 // record in the central directory of the archive. In addition to 68 // record contains a variable length "file_name" and "extra_field" 74 // The start of record signature. Must be |kSignature|. 97 // will appear immediately after this record. 147 // will appear immediately after this record.
|