/external/clang/test/CodeGen/ |
bitfield-2.c | 2 // RUN: -fdump-record-layouts > %t.dump.txt 3 // RUN: FileCheck -check-prefix=CHECK-RECORD < %t.dump.txt %s 11 // CHECK-RECORD: *** Dumping IRgen Record Layout 12 // CHECK-RECORD: Record: RecordDecl{{.*}}s0 13 // CHECK-RECORD: Layout: <CGRecordLayout 14 // CHECK-RECORD: LLVMType:%struct.s0 = type { [3 x i8] } 15 // CHECK-RECORD: IsZeroInitializable:1 16 // CHECK-RECORD: BitFields: [all...] |
/external/selinux/libsemanage/src/ |
database_policydb.h | 35 const record_t * record); 40 const record_t * record); 45 const record_t * record); 67 /* POLICYDB extension to RECORD interface - method table */ 69 /* Add policy record */ 71 /* Modify policy record, or add if 74 /* Set policy record */ 76 /* Query policy record - return the record 81 /* Check if a record exists * [all...] |
/packages/apps/TV/src/com/android/tv/data/ |
WatchedHistoryManager.java | 65 WatchedRecord record = decode( 68 if (record != null) { 69 mWatchedHistory.add(record); 71 mListener.onNewRecordAdded(record); 118 WatchedRecord record = local 121 if (record != null) { 122 mWatchedHistory.add(record); 127 WatchedRecord record = decode(mSharedPreferences.getString( local 129 if (record != null) { 130 mWatchedHistory.add(record); 174 WatchedRecord record = new WatchedRecord(channel.getId(), endTime - duration, duration); local 214 WatchedRecord record = mWatchedHistory.get(i); local [all...] |
/system/gatekeeper/ |
gatekeeper.cpp | 56 failure_record_t record; local 57 if (!GetFailureRecord(uid, user_id, &record, throttle_secure)) { 62 if (ThrottleRequest(uid, timestamp, &record, throttle_secure, response)) return; 64 if (!IncrementFailureRecord(uid, user_id, timestamp, &record, throttle_secure)) { 69 timeout = ComputeRetryTimeout(&record); 130 failure_record_t record; local 131 if (!GetFailureRecord(uid, user_id, &record, throttle_secure)) { 136 if (ThrottleRequest(uid, timestamp, &record, throttle_secure, response)) return; 138 if (!IncrementFailureRecord(uid, user_id, timestamp, &record, throttle_secure)) { 143 timeout = ComputeRetryTimeout(&record); [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
IIccPhoneBook.aidl | 59 * Replace oldAdn with newAdn in ADN-like record in EF 68 * empty record, aka, insert new record 72 * record with empty one, aka, delete old record 84 * Replace oldAdn with newAdn in ADN-like record in EF 93 * empty record, aka, insert new record 97 * record with empty one, aka, delete old record [all...] |
/packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/ |
SdpManagerTestServer.java | 182 SdpMasRecord record = intent.getParcelableExtra(BluetoothDevice.EXTRA_SDP_RECORD); local 183 Assert.assertNotNull(record); 184 Log.v(TAG, " -> Record: " + record); 186 if(record.getServiceName().equals(SdpManagerTest.SDP_SERVER_NAME)) { 187 Assert.assertEquals(((long)record.getSupportedFeatures())&0xffffffffL, SdpManagerTest.SDP_FEATURES); 188 Assert.assertEquals(record.getSupportedMessageTypes(), SdpManagerTest.SDP_MSG_TYPES); 189 Assert.assertEquals(record.getProfileVersion(), SdpManagerTest.SDP_VERSION); 190 Assert.assertEquals(record.getServiceName(), SdpManagerTest.SDP_SERVER_NAME); 191 Assert.assertEquals(record.getMasInstanceId(), SdpManagerTest.SDP_MAS_ID) 206 SdpMnsRecord record = intent.getParcelableExtra(BluetoothDevice.EXTRA_SDP_RECORD); local 228 SdpPseRecord record = intent.getParcelableExtra(BluetoothDevice.EXTRA_SDP_RECORD); local 251 SdpOppOpsRecord record = intent.getParcelableExtra(BluetoothDevice.EXTRA_SDP_RECORD); local 273 SdpSapsRecord record = intent.getParcelableExtra(BluetoothDevice.EXTRA_SDP_RECORD); local [all...] |
/system/update_engine/common/ |
subprocess.cc | 117 void Subprocess::OnStdoutReady(SubprocessRecord* record) { 124 record->stdout_fd, buf, arraysize(buf), &bytes_read, &eof); 125 record->stdout.append(buf, bytes_read); 129 MessageLoop::current()->CancelTask(record->stdout_task_id); 130 record->stdout_task_id = MessageLoop::kTaskIdNull; 140 SubprocessRecord* record = pid_record->second.get(); 143 OnStdoutReady(record); 145 MessageLoop::current()->CancelTask(record->stdout_task_id); 146 record->stdout_task_id = MessageLoop::kTaskIdNull; 155 if (!record->stdout.empty()) [all...] |
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/ |
records.py | 2 """Lightweight record format. 8 1. to detect corruption. Every record has a crc32c checksum. 9 2. to quickly skip corrupted record to the next valid record. 18 block := record* trailer? 19 record := 25 A record never starts within the last six bytes of a block (since it 30 non-zero length record is added, the writer must emit a FIRST record 35 More types may be added in the future. Some Readers may skip record [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/ |
DataRecord.java | 60 DataRecord record = new DataRecord(); local 61 record.pl = in.namedIndex("pl", EPluralization.names); 62 record.pluralNames = in.stringTable("pluralName"); 63 record.genders = in.namedIndexArray("gender", EGender.names); 64 record.singularNames = in.stringArray("singularName"); 65 record.halfNames = in.stringArray("halfName"); 66 record.numberNames = in.stringArray("numberName"); 67 record.mediumNames = in.stringArray("mediumName"); 68 record.shortNames = in.stringArray("shortName"); 69 record.measures = in.stringArray("measure") [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/ |
DataRecord.java | 58 DataRecord record = new DataRecord(); local 59 record.pl = in.namedIndex("pl", EPluralization.names); 60 record.pluralNames = in.stringTable("pluralName"); 61 record.genders = in.namedIndexArray("gender", EGender.names); 62 record.singularNames = in.stringArray("singularName"); 63 record.halfNames = in.stringArray("halfName"); 64 record.numberNames = in.stringArray("numberName"); 65 record.mediumNames = in.stringArray("mediumName"); 66 record.shortNames = in.stringArray("shortName"); 67 record.measures = in.stringArray("measure") [all...] |
/system/extras/simpleperf/ |
record.h | 104 // SampleId is optional at the end of a record in binary format. Its content is determined by 131 // Usually one record contains the following three parts in order in binary format: 132 // perf_event_header (at the head of a record, containing type and size information) 133 // data depends on the record type 134 // sample_id (optional part at the end of a record) 135 // We hold the common parts (perf_event_header and sample_id) in the base class Record, and 136 // hold the type specific data part in classes derived from Record. 137 struct Record { 141 Record(); 142 Record(const perf_event_header* pheader) 336 Record *record; member in struct:RecordCache::RecordWithSeq [all...] |
record_test.cpp | 21 #include "record.h" 33 void CheckRecordMatchBinary(const RecordType& record); 39 void RecordTest::CheckRecordMatchBinary(const RecordType& record) { 40 std::vector<char> binary = record.BinaryFormat(); 41 std::vector<std::unique_ptr<Record>> records = 44 CheckRecordEqual(record, *records[0]); 48 MmapRecord record = local 50 CheckRecordMatchBinary(record); 54 CommRecord record = CreateCommRecord(event_attr, 1, 2, "CommRecord"); local 55 CheckRecordMatchBinary(record); [all...] |
/external/clang/lib/Serialization/ |
ASTReader.cpp | 564 // Detailed record is important since it is used for the module cache hash. [all...] |
/frameworks/support/v7/mediarouter/src/android/support/v7/media/ |
SystemMediaRouteProvider.java | 269 SystemRouteRecord record = mSystemRouteRecords.get(index); local 270 return new SystemRouteController(record.mRouteObj); 325 SystemRouteRecord record = new SystemRouteRecord(routeObj, id); local 326 updateSystemRouteDescriptor(record); 327 mSystemRouteRecords.add(record); 367 SystemRouteRecord record = mSystemRouteRecords.get(index); local 368 updateSystemRouteDescriptor(record); 379 SystemRouteRecord record = mSystemRouteRecords.get(index); local 381 if (newVolume != record.mRouteDescriptor.getVolume()) { 382 record.mRouteDescriptor 409 SystemRouteRecord record = mSystemRouteRecords.get(index); local 437 UserRouteRecord record = getUserRouteRecord(routeObj); local 445 UserRouteRecord record = getUserRouteRecord(routeObj); local 456 UserRouteRecord record = new UserRouteRecord(route, routeObj); local 470 SystemRouteRecord record = mSystemRouteRecords.get(index); local 483 UserRouteRecord record = mUserRouteRecords.remove(index); local 496 UserRouteRecord record = mUserRouteRecords.get(index); local 513 UserRouteRecord record = mUserRouteRecords.get(index); local 519 SystemRouteRecord record = mSystemRouteRecords.get(index); local 726 SystemRouteRecord record = mSystemRouteRecords.get(index); local [all...] |
/system/bt/stack/include/ |
sdp_api.h | 120 tSDP_DISC_ATTR *p_first_attr; /* First attribute of record */ 121 struct t_sdp_disc_rec *p_next_rec; /* Addr of next linked record */ 122 UINT32 time_read; /* The time the record was read */ 130 tSDP_DISC_REC *p_first_rec; /* Addr of first record in DB */ 137 UINT8 *raw_data; /* Received record from server. allocated/released by client */ 159 /* Used to set the DI record */ 172 /* Used to get the DI record */ 264 ** of the database, else it continues from the next record after 267 ** Returns Pointer to matching record, or NULL 279 ** Description This function searches an SDP discovery record for [all...] |
/frameworks/base/services/core/java/com/android/server/notification/ |
NotificationIntrusivenessExtractor.java | 41 public RankingReconsideration process(NotificationRecord record) { 42 if (record == null || record.getNotification() == null) { 47 if (record.getImportance() >= NotificationListenerService.Ranking.IMPORTANCE_DEFAULT) { 48 final Notification notification = record.getNotification(); 54 record.setRecentlyIntrusive(true); 58 return new RankingReconsideration(record.getKey(), HANG_TIME_MS) { 65 public void applyChangesLocked(NotificationRecord record) { 66 record.setRecentlyIntrusive(false);
|
/system/core/bootstat/ |
boot_event_record_store.h | 27 // BootEventRecordStore manages the persistence of boot events to the record 37 // Persists the boot |event| in the record store. 40 // Persists the boot |event| with the associated |value| in the record store. 43 // Queries the named boot |event|. |record| must be non-null. |record| 46 bool GetBootEvent(const std::string& event, BootEventRecord* record) const; 48 // Returns a list of all of the boot events persisted in the record store. 60 // Sets the filesystem path of the record store. 66 // The filesystem path of the record store.
|
/tools/test/connectivity/acts/framework/acts/ |
records.py | 18 """This module is where all the record definitions and record containers live. 50 """A record that holds the information of a test case execution. 76 Sets the begin_time of this record. 98 """To mark the test as passed in this record. 106 """To mark the test as failed in this record. 118 """To mark the test as skipped in this record. 126 """To mark the test as unknown in this record. 137 If an error is added the test record, the record's result is equivalen [all...] |
/external/avahi/avahi-core/ |
rr.h | 23 /** \file rr.h Functions and definitions for manipulating DNS resource record (RR) data. */ 34 /** DNS record types, see RFC 1035, in addition to those defined in defs.h */ 44 /** DNS record classes, see RFC 1035, in addition to those defined in defs.h */ 57 char *name; /**< Record name */ 58 uint16_t clazz; /**< Record class, one of the AVAHI_DNS_CLASS_xxx constants */ 59 uint16_t type; /**< Record type, one of the AVAHI_DNS_TYPE_xxx constants */ 62 /** Encapsulates a DNS resource record. The structure is intended to 67 AvahiKey *key; /**< Reference to the query key of this record */ 69 uint32_t ttl; /**< DNS TTL of this record */ 76 } generic; /**< Generic record data for unknown types * [all...] |
/external/clang/test/Layout/ |
ms-x86-alias-avoidance-padding.cpp | 1 // RUN: %clang_cc1 -fno-rtti -emit-llvm-only -triple i686-pc-win32 -fms-extensions -fdump-record-layouts -fsyntax-only %s 2>/dev/null \ 3 // RUN: %clang_cc1 -fno-rtti -emit-llvm-only -triple x86_64-pc-win32 -fms-extensions -fdump-record-layouts -fsyntax-only %s 2>/dev/null \ 48 // CHECK: *** Dumping AST Record Layout 49 // CHECK: *** Dumping AST Record Layout 50 // CHECK: *** Dumping AST Record Layout 51 // CHECK: *** Dumping AST Record Layout 52 // CHECK: *** Dumping AST Record Layout 53 // CHECK: *** Dumping AST Record Layout 54 // CHECK: *** Dumping AST Record Layout 55 // CHECK: *** Dumping AST Record Layou [all...] |
itanium-union-bitfield.cpp | 1 // RUN: %clang_cc1 -emit-llvm-only -triple %itanium_abi_triple -fdump-record-layouts %s 2>/dev/null \ 18 // CHECK:*** Dumping AST Record Layout 24 // CHECK:*** Dumping AST Record Layout
|
/libcore/ojluni/src/main/java/java/util/logging/ |
XMLFormatter.java | 101 * @param record the log record to be formatted. 102 * @return a formatted log record 104 public String format(LogRecord record) { 106 sb.append("<record>\n"); 109 appendISO8601(sb, record.getMillis()); 113 sb.append(record.getMillis()); 117 sb.append(record.getSequenceNumber()); 120 String name = record.getLoggerName(); 128 escape(sb, record.getLevel().toString()) [all...] |
/system/gatekeeper/include/gatekeeper/ |
gatekeeper.h | 118 * Returns the value of the current failure record for the user. 120 * The failure record should be written to hardware-backed secure storage, such as 124 * may store the failure record in memory or in non-secure storage if this value is false. 126 * Returns true on success, false if failure record cannot be retrieved. 128 virtual bool GetFailureRecord(uint32_t uid, secure_id_t user_id, failure_record_t *record, 132 * Initializes or reinitializes the failure record for the current user. 137 * may store the failure record in memory or in non-secure storage if this value is false. 139 * Returns true if the failure record was successfully persisted. 144 * Writes the provided failure record to persistent storage. 149 * may store the failure record in memory or in non-secure storage if this value is false [all...] |
/external/autotest/server/site_tests/dummy_PassServer/ |
control.sanity | 23 # We need to record the state, so that tko paser can still parse it 25 job.record('START', None, NAME) 26 job.record('END GOOD', None, NAME)
|
/external/clang/test/PCH/ |
chain-macro-override.c | 2 // RUN: %clang_cc1 -include %S/Inputs/chain-macro-override1.h -include %S/Inputs/chain-macro-override2.h -fsyntax-only -verify -detailed-preprocessing-record %s 5 // RUN: %clang_cc1 -emit-pch -o %t1 %S/Inputs/chain-macro-override1.h -detailed-preprocessing-record 6 // RUN: %clang_cc1 -emit-pch -o %t2 %S/Inputs/chain-macro-override2.h -include-pch %t1 -detailed-preprocessing-record
|