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

<<41424344454647484950>>

  /external/valgrind/docs/internals/
3_4_BUGSTATUS.txt 3 any record of bugs reported after the release of 3.4.0. Oh well.
38 def=4) + what is a loss record
performance.txt 4 The intent of this file is to record progress in improving performance.
29 - Nick changed ExeContext gathering to not record/save extra zeroes at the
  /frameworks/av/cmds/stagefright/
Android.mk 35 record.cpp
50 LOCAL_MODULE:= record
  /frameworks/av/services/audioflinger/
RecordTracks.h 22 // record track
87 // used by the record thread to convert frames to proper destination format
  /frameworks/base/telephony/java/android/telephony/
ModemActivityInfo.java 107 * @return timestamp of record creation
151 * @return if the record is valid
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IccProvider.java 227 // TODO: we need to find out the rowId for the newly added record
512 * @param record the ADN record to load from
515 private void loadRecord(AdnRecord record, MatrixCursor cursor, int id) {
516 if (!record.isEmpty()) {
518 String alphaTag = record.getAlphaTag();
519 String number = record.getNumber();
525 String[] emails = record.getEmails();
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
BinaryHprof.java 123 return "expected a minimial record size of " + minimumSize + " for " + this
130 return "expected a maximum record size of " + maximumSize + " for " + this
  /packages/apps/Contacts/src/com/android/contacts/
NfcHandler.java 91 NdefRecord record = NdefRecord.createMime("text/x-vcard", ndefBytes.toByteArray()); local
92 return new NdefMessage(record);
  /packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
MmsVideoRecorder.java 36 // We think user will expect to be able to record videos at least this long
66 // can't actually hit these goals it will still record video at higher rate and stop when
  /packages/apps/TV/src/com/android/tv/recommendation/
RecommendationDataManager.java 394 for (WatchedHistoryManager.WatchedRecord record
397 convertFromWatchedHistoryManagerRecords(record));
481 ChannelRecord record = new ChannelRecord(mContext, channel, inputRemoved); local
482 mChannelRecordMap.put(channel.getId(), record); local
484 mAvailableChannelRecordMap.put(channel.getId(), record); local
539 * Called when loading channel record map from database is finished.
551 * @param channelRecord The channel record corresponds to the new watch log.
556 * Called when the channel record map changes.
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
NameDistance.java 23 * A detailed discussion of the topic of record linkage in general and name matching
26 * Winkler, W. E. (2006). "Overview of Record Linkage and Current Research Directions".
  /prebuilts/go/darwin-x86/src/archive/tar/
writer.go 72 // If the value is too long for the field and allowPax is true add a paxheader record instead
103 // If the value is too long for the field and writingPax is enabled both for the field and the add a paxheader record instead
338 // paxHeader formats a single pax record, prefixing it with the appropriate length
343 record := fmt.Sprintf("%d %s\n", size, msg)
344 if len(record) != size {
347 size = len(record)
348 record = fmt.Sprintf("%d %s\n", size, msg)
350 return record
  /prebuilts/go/linux-x86/src/archive/tar/
writer.go 72 // If the value is too long for the field and allowPax is true add a paxheader record instead
103 // If the value is too long for the field and writingPax is enabled both for the field and the add a paxheader record instead
338 // paxHeader formats a single pax record, prefixing it with the appropriate length
343 record := fmt.Sprintf("%d %s\n", size, msg)
344 if len(record) != size {
347 size = len(record)
348 record = fmt.Sprintf("%d %s\n", size, msg)
350 return record
  /system/bt/bta/include/
bta_sdp_api.h 118 ** record. The registered callback will be called with event
132 ** record. The registered callback will be called with event
  /system/bt/bta/sdp/
bta_sdp_api.c 117 ** record. The registered callback will be called with event
144 ** record. The registered callback will be called with event
  /system/bt/btif/src/
btif_sdp.c 24 * References btif_sdp_server.c for SDP record creation.
105 /* need to deep copy the record content */
  /system/bt/stack/btm/
btm_ble_addr.c 312 ** record, starting from calculating IRK. If record index exceed
313 ** the maximum record number, matching failed and send callback.
355 ** Returns pointer to the security record of the device whom a random
369 /* check for next security record */
391 ** Description find the security record whose LE static address is matching
493 /* update security record here, in adv event or connection complete process */
507 BTM_TRACE_ERROR("No matching known device in record");
  /system/bt/stack/include/
hiddefs.h 127 /* Descriptor types in the SDP record
153 tHID_DEV_DSCP_INFO dscp_info; /* Descriptor list and Report list to be set in the SDP record.
  /external/opencv3/3rdparty/libwebp/enc/
frame.c 99 // Record proba context used
100 static int Record(int bit, proba_t* const stats) {
105 // record bit count (lower 16 bits) and increment total count (upper 16 bits).
114 // Simulate block coding, but only record statistics.
115 // Note: no need to record the fixed probas.
121 Record(0, s + 0);
126 Record(1, s + 0); // order of record doesn't matter
128 Record(0, s + 1);
131 Record(1, s + 1)
    [all...]
  /bootable/recovery/
roots.h 25 // Return the Volume* record for this path (or NULL).
  /cts/suite/audio_quality/lib/include/audio/
AudioLocal.h 31 * Basic API for playback and record
  /cts/suite/audio_quality/test_description/
dut_playback_sample.xml 33 <!-- input: host record, signal frequency in Hz, threshold, output: frequency calculated -->
dut_playback_thd.xml 33 <!-- input: host record, signal frequency in Hz, THD for pass in percentile, output: THD calculated -->
  /cts/tests/accessibility/src/android/view/accessibility/cts/
AccessibilityEventTest.java 195 AccessibilityRecord record = AccessibilityRecord.obtain(); local
196 AccessibilityRecordTest.fullyPopulateAccessibilityRecord(record);
197 sentEvent.appendRecord(record);
235 assertEquals("must have one record", expectedEvent.getRecordCount(),
  /cts/tools/dasm/src/java_cup/runtime/
symbol.java 8 * In addition to the parse_state field, symbols also maintain a record

Completed in 1483 milliseconds

<<41424344454647484950>>