HomeSort by relevance Sort by last modified time
    Searched refs:record (Results 151 - 175 of 300) sorted by null

1 2 3 4 5 67 8 91011>>

  /sdk/traceview/src/com/android/traceview/
DmTraceReader.java 144 // read record size
260 // We represent context switches in the trace by pushing a call record
601 * timeline for each thread. Each record is a pair: (row, block) where: row:
606 public ArrayList<TimeLineView.Record> getThreadTimeRecords() {
607 TimeLineView.Record record; local
608 ArrayList<TimeLineView.Record> timeRecs;
609 timeRecs = new ArrayList<TimeLineView.Record>();
615 record = new TimeLineView.Record(threadData, threadData.getRootCall())
    [all...]
  /frameworks/base/voip/jni/rtp/
AudioGroup.cpp 810 AudioRecord record; local
812 AUDIO_CHANNEL_OUT_MONO, output) != NO_ERROR || record.set(
818 LOGD("latency: output %d, input %d", track.latency(), record.latency());
839 record.getSessionId(),
840 record.getInput());
852 (track.latency() + record.latency()) * sampleRate / 1000);
858 record.start();
860 record.read(&one, sizeof(one));
896 status_t status = record.obtainBuffer(&buffer, 1);
901 record.releaseBuffer(&buffer)
    [all...]
  /external/chromium/chrome/browser/sync/
profile_sync_service_bookmark_unittest.cc 159 sync_api::SyncManager::ChangeRecord record; local
160 record.action = sync_api::SyncManager::ChangeRecord::ACTION_ADD;
161 record.id = node.GetId();
162 changes_.push_back(record);
196 sync_api::SyncManager::ChangeRecord record; local
197 record.action = sync_api::SyncManager::ChangeRecord::ACTION_DELETE;
198 record.id = id;
202 // children before parents. Thus, we must insert the deletion record
204 changes_.insert(changes_.begin(), record);
249 // Helper function to push an ACTION_UPDATE record onto the bac
    [all...]
  /development/ndk/platforms/android-9/samples/native-audio/src/com/example/nativeaudio/
NativeAudio.java 112 ((Button) findViewById(R.id.record)).setOnClickListener(new OnClickListener() {
  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 82 const CXXRecordDecl *record = 0; local
84 (record = type->getAsCXXRecordDecl())) {
85 assert(!record->hasTrivialDestructor());
86 CXXDestructorDecl *dtor = record->getDestructor();
CGBlocks.cpp 198 const CXXRecordDecl *record = cast<CXXRecordDecl>(recordType->getDecl()); local
201 if (!record->hasTrivialDestructor()) return false;
202 if (!record->hasTrivialCopyConstructor()) return false;
206 return !record->hasMutableFields();
374 if (const CXXRecordDecl *record =
376 if (!record->hasTrivialDestructor()) {
    [all...]
  /external/skia/gpu/include/
GrContext.h 579 OffscreenRecord* record);
586 OffscreenRecord* record);
  /external/v8/test/mjsunit/regress/
regress-1060.js 28 // Make sure that we do not record multiple bailouts in the unoptimized code
regress-1104.js 29 // an arguments object access should not record duplicate AST IDs for
regress-1149.js 28 // We should not try to record duplicate bailout IDs for the 'left-hand
  /frameworks/base/core/java/android/nfc/
NdefRecord.java 29 * Represents a logical (unchunked) NDEF (NFC Data Exchange Format) record.
30 * <p>An NDEF record always contains:
33 * <li>Variable length type: Describes the record format
34 * <li>Variable length ID: A unique identifier for the record
37 * <p>The underlying record
44 * Indicates no type, id, or payload is associated with this NDEF Record.
47 * record.
85 * The type field must be empty to be a valid TNF_UNKNOWN record.
91 * NDEF Record.
146 * The payload of a record with type RTD_ANDROID_AP
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
SimSmsInterfaceManager.java 126 * @param index record index of message to update
146 // manipulating the SIM record
149 byte[] record = makeSmsRecordData(status, pdu);
152 index, record, null, response);
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldLoggerTest.java 222 public void publish(LogRecord record) {}
226 public boolean isLoggable(LogRecord record) {
  /external/bluetooth/bluez/audio/
headset.c 1442 const sdp_record_t *record, uint16_t svc)
1447 if (sdp_get_access_protos(record, &protos) < 0) {
1448 error("Unable to get access protos from headset record");
1458 error("Unable to get RFCOMM channel from Headset record");
1465 headset->hfp_handle = record->handle;
1468 headset->hsp_handle = record->handle;
1480 sdp_record_t *record = NULL; local
1487 error("Unable to get service record: %s (%d)",
1506 record = r->data;
1508 if (sdp_get_service_classes(record, &classes) < 0)
2097 const sdp_record_t *record; local
2199 const sdp_record_t *record; local
    [all...]
a2dp.c 1319 sdp_record_t *record; local
1327 record = sdp_record_alloc();
1328 if (!record)
1333 sdp_set_browse_groups(record, root);
1340 sdp_set_service_classes(record, svclass_id);
1345 sdp_set_profile_descs(record, pfseq);
1360 sdp_set_access_protos(record, aproto);
1363 sdp_attr_add(record, SDP_ATTR_SUPPORTED_FEATURES, features);
1366 sdp_set_info_attr(record, "Audio Source", 0, 0);
1368 sdp_set_info_attr(record, "Audio Sink", 0, 0)
1585 sdp_record_t *record; local
    [all...]
  /external/bluetooth/bluez/src/
sdp-xml.c 389 * Will convert the sdp record to XML. The appender and data can be used
390 * to control where to output the record (e.g. file or a data buffer). The
404 appender(data, "<record>\n");
407 appender(data, "</record>\n");
438 sdp_data_t *sdp_xml_parse_uuid(const char *data, sdp_record_t *record)
469 if (record && ret)
470 sdp_pattern_add_uuid(record, &ret->val.uuid);
747 sdp_record_t *record)
774 return sdp_xml_parse_uuid(data, record);
  /external/chromium/net/base/
dnsrr_resolver.cc 275 PDNS_RECORD record = NULL; local
278 NULL /* pExtra (reserved) */, &record, NULL /* pReserved */);
290 for (DNS_RECORD* cur = record; cur; cur = cur->pNext) {
292 response_.ttl = record->dwTtl;
294 // of these types then we have to reserialise the record.
334 DnsRecordListFree(record, DnsFreeRecordList);
  /frameworks/base/core/java/android/widget/
ActivityChooserModel.java 173 * The tag for a record in the history file.
175 private static final String TAG_HISTORICAL_RECORD = "historical-record";
209 * Default weight for a choice record.
449 * adding a historical record for that action and construct intent with
520 * historical record with weight high enough that this activity will
522 * will eventually change if not used. Also the weight of the record for
534 // Add a record with weight enough to boost the chosen at the top.
684 * Adds a historical record.
686 * @param historicalRecord The record to add.
687 * @return True if the record was added
1107 HistoricalRecord record = records.remove(0); local
    [all...]
AdapterView.java 902 // Add a record for ourselves as well.
903 AccessibilityEvent record = AccessibilityEvent.obtain(); local
904 onInitializeAccessibilityEvent(record);
906 child.dispatchPopulateAccessibilityEvent(record);
907 event.appendRecord(record);
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
IccProvider.java 339 // TODO: we need to find out the rowId for the newly added record
589 * @param record the ADN record to load from
592 private void loadRecord(AdnRecord record,
594 if (!record.isEmpty()) {
596 String alphaTag = record.getAlphaTag();
597 String number = record.getNumber();
598 String[] emails = record.getEmails();
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audioquality/experiments/
LoopbackExperiment.java 85 protected void compare(byte[] stim, byte[] record) {
145 Log.e(TAG, "Couldn't record");
  /external/skia/src/core/
SkPicturePlayback.h 28 explicit SkPicturePlayback(const SkPictureRecord& record);
  /external/webkit/Source/WebKit/android/
TimeCounter.cpp 102 "record content (webview core)",
107 void TimeCounter::record(enum Type type, const char* functionName) function in class:android::TimeCounter
  /frameworks/base/media/libmedia/
AudioRecord.cpp 69 // We double the size of input buffer for ping pong use of record buffer.
180 LOGE("Could not get audio input for record source %d", inputSource);
360 // the record head position will reset to 0, so if a marker is set, we need
463 sp<IAudioRecord> record = audioFlinger->openRecord(getpid(), input, local
471 if (record == 0) {
472 LOGE("AudioFlinger could not create record track, status: %d", status);
475 sp<IMemory> cblk = record->getCblk();
481 mAudioRecord = record;
  /packages/apps/Tag/src/com/android/apps/tag/record/
RecordUtils.java 17 package com.android.apps.tag.record;
60 * Creates one or more views for a parsed record that wants to display an actionable intent.

Completed in 1037 milliseconds

1 2 3 4 5 67 8 91011>>