/external/selinux/libsemanage/include/semanage/ |
ibpkeys_local.h | 29 record, void *varg),
|
interfaces_local.h | 29 record, void *varg),
|
nodes_local.h | 29 record, void *varg),
|
ports_local.h | 29 record, void *varg),
|
seusers_local.h | 29 * record, void *varg),
|
users_local.h | 29 record, void *varg),
|
/external/selinux/libsemanage/src/ |
database_join.h | 18 /* JOIN extension to RECORD interface - method table */ 27 /* Splits a record into two */ 29 const record_t * record,
|
database_join.c | 51 record_t *record = NULL; local 110 records2[j], &record) < 0) 118 NULL, &record) < 0) 126 records2[j], &record) < 0) 133 /* Add result record to database */ 134 if (dbase_llist_cache_prepend(handle, &dbase->llist, record) < 138 rtable->free(record); 139 record = NULL; 163 rtable->free(record); 201 /* For each record, split, and add parts into their corresponding databases * [all...] |
/external/tensorflow/tensorflow/python/lib/io/ |
py_record_writer.h | 45 void WriteRecord(tensorflow::StringPiece record, TF_Status* out_status);
|
/external/u-boot/common/ |
bootstage.c | 34 struct bootstage_record record[RECORD_COUNT]; member in struct:bootstage_data 61 data->record[i].name = strdup(data->record[i].name); 72 for (rec = data->record, end = rec + data->rec_count; rec < end; 88 rec = &data->record[data->rec_count++]; 105 /* Only record the first event for each */ 108 rec = &data->record[data->rec_count++]; 199 * Get a record name as a printable string 203 * @param rec Boot stage record to get the name from 204 * @return pointer to name, either from the record or pointing to buf [all...] |
/external/v8/src/profiler/ |
circular-queue.h | 28 // record or nullptr if all entries are full at the moment. 36 // if this queue is empty. After the record had been read by a consumer, 51 T record; variable
|
circular-queue-inl.h | 29 return &dequeue_pos_->record; 46 return &enqueue_pos_->record;
|
/art/runtime/gc/ |
allocation_record.cc | 45 << "Allocation record max stack depth is too large"; 60 AllocRecord& record = it->second; local 62 buffered_visitor.VisitRootIfNonNull(record.GetClassGcRoot()); 67 for (size_t i = 0, depth = record.GetDepth(); i < depth; ++i) { 68 const AllocRecordStackTraceElement& element = record.StackElement(i); 75 static inline void SweepClassObject(AllocRecord* record, IsMarkedVisitor* visitor) 78 GcRoot<mirror::Class>& klass = record->GetClassGcRoot(); 101 AllocRecord& record = it->second; local 106 SweepClassObject(&record, visitor); 117 SweepClassObject(&record, visitor) [all...] |
/external/python/cpython2/Lib/unittest/test/ |
test_skipping.py | 60 record.append(1) 61 record = [] 67 self.assertEqual(record, []) 73 record.append(1) 76 record = [] 82 self.assertEqual(record, []) 88 record.append(1) 91 record = [] 97 self.assertEqual(record, [])
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ |
CanonGSUBBuilder.java | 77 ArabicCharacterData.Record record = data.getRecord(i); local 78 String decomposition = record.getDecomposition(); 81 int contextual = record.getCodePoint(); 82 int isolated = UTF16.charAt(record.getDecomposition(), 0); 84 switch (record.getDecompositionType()) { 119 ArabicCharacterData.Record record = data.getRecord(i); local 120 String decomposition = record.getDecomposition(); 123 int ligature = record.getCodePoint() 201 ArabicCharacterData.Record record = data.getRecord(i); local 276 CanonicalCharacterData.Record record = data.getRecord(script, i); local 303 CanonicalCharacterData.Record record = data.getRecord(script, r); local [all...] |
/external/python/cpython3/Lib/logging/ |
__init__.py | 278 # The logging record 288 using str(msg) % args to create the message field of the record. The 289 record also includes information such as when the record was created, 296 Initialize a logging record with interesting information. 390 Set the factory to be used when instantiating a log record. 393 a log record. 400 Return the factory to be used when instantiating a log record. 432 def format(self, record): 433 return self._fmt % record.__dict_ [all...] |
/external/tensorflow/tensorflow/core/lib/io/ |
recordio_test.cc | 139 string record; local 140 Status s = reader_->ReadRecord(&readpos_, &record); 142 return record; 173 string record; local 174 Status s = reader_->ReadRecord(&offset, &record); 236 string record; local 242 TF_ASSERT_OK(reader.ReadRecord(&offset, &record)) << i; 245 // Read randomly: First go back to record #3 then forward to #8. 247 TF_ASSERT_OK(reader.ReadRecord(&offset, &record)); 248 EXPECT_EQ("3.", record); [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/tech/ |
NfcUtils.java | 45 private static boolean areRecordsEqual(NdefRecord record, NdefRecord otherRecord) { 46 return Arrays.equals(record.toByteArray(), otherRecord.toByteArray());
|
/external/autotest/client/cros/cellular/pseudomodem/ |
logging_setup.py | 30 def format(self, record): 34 @param record: The log record. 38 result = super(ModemManagerFormatter, self).format(record)
|
/external/autotest/client/cros/ |
network.py | 33 server_addresses = [record[4][0] 34 for record in socket.getaddrinfo(host, 80)]
|
/external/autotest/site_utils/sponge_lib/ |
sponge_utils.py | 27 def emit(self, record): 28 log_entry = self.format(record)
|
/external/skia/src/core/ |
SkBigPicture.cpp | 16 SkRecord* record, 22 , fRecord(record) // Take ownership of caller's ref.
|
/external/skqp/src/core/ |
SkBigPicture.cpp | 16 SkRecord* record, 22 , fRecord(record) // Take ownership of caller's ref.
|
/external/tensorflow/tensorflow/tools/graph_transforms/ |
freeze_requantization_ranges.cc | 132 for (const MinMaxRecord& record : records) { 133 records_by_node[record.name].push_back(record); 134 if (!node_map.count(record.name)) { 136 LOG(WARNING) << "Node from log not found in graph: " << record.name; 151 for (const MinMaxRecord& record : records) { 152 mins.push_back(record.min); 153 maxs.push_back(record.max);
|
/external/toybox/scripts/ |
record-commands | 5 [ -z "$WRAPDIR" ] && WRAPDIR="$PWD"/record-commands && RM=$(which rm) 10 echo "usage: WRAPDIR=dir WRAPLOG=log.txt record-commands COMMAND..." 11 echo 'Then examine log.txt. "record-commands echo" to just setup $WRAPDIR'
|