HomeSort by relevance Sort by last modified time
    Searched full:record (Results 1076 - 1100 of 7466) sorted by null

<<41424344454647484950>>

  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
ConsoleHandlerTest.java 147 * Test close() when having sufficient privilege, and a record has been
185 * Test close() when having sufficient privilege, and no record has been
204 * Test publish(), use no filter, having output stream, normal log record.
264 * Test publish(), use a filter, having output stream, normal log record.
303 * Test publish(), null log record, having output stream, spec said
318 * Test publish(), a log record with empty msg, having output stream
334 * Test publish(), a log record with null msg, having output stream
425 public boolean isLoggable(LogRecord record) {
426 CallVerificationStack.getInstance().push(record);
  /external/autotest/server/
site_crashcollect.py 164 # Record all crashdumps in status.log of the job:
165 # - If one server job runs several client jobs we will only record
167 # - We will record these crashdumps whether or not we successfully
170 host.job.record('INFO', None, None, 'Start crashcollection record')
172 host.job.record('INFO', None, 'New Crash Dump', minidump)
174 host.job.record('INFO', None, 'Orphaned Crash Dump', orphan)
175 host.job.record('INFO', None, None, 'End crashcollection record')
  /external/clang/include/clang/Sema/
MultiplexExternalSemaSource.h 151 /// \brief Perform layout on the given record.
154 /// layout for a record, overriding the layout that would normally be
160 /// \param Record The record whose layout is being requested.
162 /// \param Size The final size of the record, in bits.
164 /// \param Alignment The final alignment of the record, in bits.
166 /// \param FieldOffsets The offset of each of the fields within the record,
177 /// \returns true if the record layout was provided, false otherwise.
179 layoutRecordType(const RecordDecl *Record,
  /external/e2fsprogs/lib/ext2fs/
tdbtool.c 167 " insert key data : insert a record\n"
168 " move key file : move a record to a destination tdb\n"
169 " store key data : store a record (replace)\n"
170 " show key : show a record by key\n"
171 " delete key : delete a record by key\n"
175 " 1 | first : print the first record\n"
176 " n | next : print the next record\n"
327 terror("failed to move record");
330 printf("record moved\n");
tdb.c 169 tdb_off_t next; /* offset of the next record in the list */
170 tdb_len_t rec_len; /* total byte length of record */
177 char record[rec_len];
304 {TDB_ERR_EXISTS, "Record exists"},
307 {TDB_ERR_NOEXIST, "Record does not exist"},
785 /* record lock stops delete underneath */
1103 /* form a new freelist record */
1190 /* read/write a record */
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
JmDNSImpl.java 763 // To get a complete info record we need to retrieve the service, address and the text bytes.
946 final DNSRecord record = (DNSRecord) entry; local
1781 DNSRecord record = (DNSRecord) entry; local
    [all...]
  /external/llvm/docs/TableGen/
LangRef.rst 124 A ``class`` declaration creates a record which other records can inherit
140 class will inherit no fields from it since the record expansion is done
141 when the record is parsed.
276 This generates a new anonymous record definition (as would be created by an
278 arguments) and the value is the value of that record definition.
340 Defines a record whose name is given by the :token:`TokIdentifier`. The
341 fields of the record are inherited from the base classes and defined in the
376 This is effectively equivalent to ``let`` inside the body of a record
378 applied at the end of parsing the base classes of a record.
  /frameworks/wilhelm/tests/examples/
slesTestFeedback.cpp 17 // Test program to record from default audio input and playback to default audio output.
84 // Remove buffer from record queue
109 // Update our model of the record queue
136 // Here if record has a filled buffer to play, but play queue is full.
145 // Update our model of the record queue
220 // There was room in the record queue, update our model of it
233 // Here if record queue is full
353 // Initialize record queue
524 // put on record queue
  /libcore/ojluni/src/main/java/sun/security/ssl/
EngineInputRecord.java 106 * Last sanity check that it's not a wild record
117 "Unsupported record version " + recordVersion);
158 "Unsupported record version " + recordVersion);
214 // so we just send bad record MAC. We also need to make
235 reservedBPE = new BadPaddingException("bad record");
246 reservedBPE = new BadPaddingException("bad record MAC");
253 // constant time of MAC computation and comparison on each record.
265 // maximum buffer for every record. We need a change here if
404 "Unsupported record version " + recordVersion);
  /packages/apps/Nfc/src/com/android/nfc/handover/
HandoverDataParser.java 111 payload[2] = 'b'; // carrier data reference: ID for Bluetooth OOB data record
122 // length field when parsing this record though.
215 // we have a handover request, look for BT OOB record
249 // return BT OOB record so they can perform handover
295 // we just search for a BT OOB record, and try to cross-reference
321 // Check for BT OOB record
326 // Check for BLE OOB record
331 // Check for Handover Select, followed by a BT OOB record
337 // Check for Nokia BT record, found on some Nokia BH-505 Headsets
  /external/boringssl/src/ssl/
s3_pkt.c 131 /* ssl3_get_record reads a new input record. On success, it places it in
227 * record. */
268 /* do_ssl3_write writes an SSL record of the given type. */
270 /* If there is still data from the previous record, flush it. */
372 * If we don't have stored data to work from, read a SSL/TLS record first
410 /* ssl->s3->rrec.type - is the type of record
468 /* The record has been consumed, so we may now clear the buffer. */
492 /* Get a new record. */
525 * the record-layer be idle and avoid complexities of sending a handshake
526 * record while an application_data record is being written. *
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/route53/
connection.py 36 from boto.route53.record import ResourceRecordSets
382 # Resource Record Sets
387 Retrieve the Resource Record Sets defined for this Hosted Zone.
394 :param type: The type of resource record set to begin the record
408 Valid values for weighted resource record sets:
426 record sets (multiple resource record sets with the same DNS
429 the value of SetIdentifier for the next resource record
570 for record in value
    [all...]
  /external/clang/lib/AST/
CXXInheritance.cpp 141 const CXXRecordDecl *Record = this;
144 for (const auto &I : Record->bases()) {
156 !Base->isCurrentInstantiation(Record))) {
172 Record = Queue.pop_back_val(); // not actually a queue.
179 ASTContext &Context, const CXXRecordDecl *Record,
183 // The access of the path down to this record.
187 for (const auto &BaseSpec : Record->bases()) {
188 // Find the record of the base class subobjects for this type.
222 Element.Class = Record;
329 if (const RecordType *Record = PE.Base->getType()->getAs<RecordType>()
    [all...]
  /external/libnfc-nxp/src/
phFriNfc_NdefReg.c 355 /* NOTE: Raw record and the raw record size cannot be
356 copied as this itself is an extracted record ! */
358 /* Copy the record in the format phFriNfc_NdefRecord_t
449 /* For each record, in the arry NdefReg->NdefTypes, check
454 Remember the record index that we last processed, before
457 /* for each record in the Message */
460 /* Extract a record from the Message */
465 /* Error in the Record. Exit from the process */
573 /* Copy the raw record to the callback parameter *
    [all...]
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.9/lib/gcc/aarch64-linux-android/4.9/gcov-src/
gcov-io.h 53 file : int32:magic int32:version int32:stamp record*
80 A record has a tag, length and variable amount of data.
82 record: header data
86 Records are not nested, but there is a record hierarchy. Tag
88 data files. Some record types have a varying amount of data. The
115 The BASIC_BLOCK record holds per-bb flags. The number of blocks
116 can be inferred from its data length. There is one ARCS record per
119 There is one LINES record per basic block, it enumerates the source
123 the current source file should be remembered from one LINES record
147 The ANNOUNCE_FUNCTION record is the same as that in the note file
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.9/lib/gcc/arm-linux-androideabi/4.9/gcov-src/
gcov-io.h 53 file : int32:magic int32:version int32:stamp record*
80 A record has a tag, length and variable amount of data.
82 record: header data
86 Records are not nested, but there is a record hierarchy. Tag
88 data files. Some record types have a varying amount of data. The
115 The BASIC_BLOCK record holds per-bb flags. The number of blocks
116 can be inferred from its data length. There is one ARCS record per
119 There is one LINES record per basic block, it enumerates the source
123 the current source file should be remembered from one LINES record
147 The ANNOUNCE_FUNCTION record is the same as that in the note file
    [all...]
  /prebuilts/gcc/darwin-x86/mips/mips64el-linux-android-4.9/lib/gcc/mips64el-linux-android/4.9/gcov-src/
gcov-io.h 53 file : int32:magic int32:version int32:stamp record*
80 A record has a tag, length and variable amount of data.
82 record: header data
86 Records are not nested, but there is a record hierarchy. Tag
88 data files. Some record types have a varying amount of data. The
115 The BASIC_BLOCK record holds per-bb flags. The number of blocks
116 can be inferred from its data length. There is one ARCS record per
119 There is one LINES record per basic block, it enumerates the source
123 the current source file should be remembered from one LINES record
147 The ANNOUNCE_FUNCTION record is the same as that in the note file
    [all...]
  /prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9/gcov-src/
gcov-io.h 53 file : int32:magic int32:version int32:stamp record*
80 A record has a tag, length and variable amount of data.
82 record: header data
86 Records are not nested, but there is a record hierarchy. Tag
88 data files. Some record types have a varying amount of data. The
115 The BASIC_BLOCK record holds per-bb flags. The number of blocks
116 can be inferred from its data length. There is one ARCS record per
119 There is one LINES record per basic block, it enumerates the source
123 the current source file should be remembered from one LINES record
147 The ANNOUNCE_FUNCTION record is the same as that in the note file
    [all...]
  /prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/lib/gcc/aarch64-linux-android/4.9/gcov-src/
gcov-io.h 53 file : int32:magic int32:version int32:stamp record*
80 A record has a tag, length and variable amount of data.
82 record: header data
86 Records are not nested, but there is a record hierarchy. Tag
88 data files. Some record types have a varying amount of data. The
115 The BASIC_BLOCK record holds per-bb flags. The number of blocks
116 can be inferred from its data length. There is one ARCS record per
119 There is one LINES record per basic block, it enumerates the source
123 the current source file should be remembered from one LINES record
147 The ANNOUNCE_FUNCTION record is the same as that in the note file
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.9/lib/gcc/arm-linux-androideabi/4.9/gcov-src/
gcov-io.h 53 file : int32:magic int32:version int32:stamp record*
80 A record has a tag, length and variable amount of data.
82 record: header data
86 Records are not nested, but there is a record hierarchy. Tag
88 data files. Some record types have a varying amount of data. The
115 The BASIC_BLOCK record holds per-bb flags. The number of blocks
116 can be inferred from its data length. There is one ARCS record per
119 There is one LINES record per basic block, it enumerates the source
123 the current source file should be remembered from one LINES record
147 The ANNOUNCE_FUNCTION record is the same as that in the note file
    [all...]
  /prebuilts/gcc/linux-x86/mips/mips64el-linux-android-4.9/lib/gcc/mips64el-linux-android/4.9/gcov-src/
gcov-io.h 53 file : int32:magic int32:version int32:stamp record*
80 A record has a tag, length and variable amount of data.
82 record: header data
86 Records are not nested, but there is a record hierarchy. Tag
88 data files. Some record types have a varying amount of data. The
115 The BASIC_BLOCK record holds per-bb flags. The number of blocks
116 can be inferred from its data length. There is one ARCS record per
119 There is one LINES record per basic block, it enumerates the source
123 the current source file should be remembered from one LINES record
147 The ANNOUNCE_FUNCTION record is the same as that in the note file
    [all...]
  /prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9/gcov-src/
gcov-io.h 53 file : int32:magic int32:version int32:stamp record*
80 A record has a tag, length and variable amount of data.
82 record: header data
86 Records are not nested, but there is a record hierarchy. Tag
88 data files. Some record types have a varying amount of data. The
115 The BASIC_BLOCK record holds per-bb flags. The number of blocks
116 can be inferred from its data length. There is one ARCS record per
119 There is one LINES record per basic block, it enumerates the source
123 the current source file should be remembered from one LINES record
147 The ANNOUNCE_FUNCTION record is the same as that in the note file
    [all...]
  /system/extras/simpleperf/
cmd_report.cpp 38 #include "record.h"
256 " -i <file> Specify path of record file, default is perf.data.\n"
291 void ProcessRecord(std::unique_ptr<Record> record);
329 // 2. Read record file and build SampleTree.
518 LOG(ERROR) << "record file contains " << attrs.size() << " attrs";
531 record_file_reader_->ReadDataSection([this](std::unique_ptr<Record> record) {
532 ProcessRecord(std::move(record));
537 void ReportCommand::ProcessRecord(std::unique_ptr<Record> record)
    [all...]
  /toolchain/binutils/binutils-2.25/gprof/po/
it.po 344 msgid "\t%d histogram record\n"
345 msgstr "\t%d record di istogramma\n"
350 msgstr "\t%d record di istogramma\n"
354 msgid "\t%d call-graph record\n"
355 msgstr "\t%d record di grafico delle chiamate\n"
360 msgstr "\t%d record di grafico delle chiamate\n"
364 msgid "\t%d basic-block count record\n"
365 msgstr "\t%d record di conteggio dei blocchi di base\n"
370 msgstr "\t%d record di conteggio dei blocchi di base\n"
466 "%s: unità di dimensione modificata tra i record degli istogrammi\n
    [all...]
  /external/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp 23 #include "llvm/TableGen/Record.h"
795 Record *Op = PatFragRec->getOnlyTree()->getOperator();
872 SmallVector<Record *, 4> PredicateRecs;
875 Record *Def = Pred->getDef();
889 for (Record *Pred : PredicateRecs) {
902 SDTypeConstraint::SDTypeConstraint(Record *R) {
    [all...]

Completed in 2369 milliseconds

<<41424344454647484950>>