HomeSort by relevance Sort by last modified time
    Searched refs:record (Results 101 - 125 of 184) sorted by null

1 2 3 45 6 7 8

  /sdk/traceview/src/com/android/traceview/
DmTraceReader.java 198 // record so that we can do something reasonable with the global
499 * timeline for each thread. Each record is a pair: (row, block) where: row:
504 public ArrayList<TimeLineView.Record> getThreadTimeRecords() {
505 TimeLineView.Record record; local
506 ArrayList<TimeLineView.Record> timeRecs;
507 timeRecs = new ArrayList<TimeLineView.Record>();
517 record = new TimeLineView.Record(threadData, call);
518 timeRecs.add(record);
    [all...]
  /external/bluetooth/bluez/audio/
a2dp.c 988 sdp_record_t *record; local
996 record = sdp_record_alloc();
997 if (!record)
1002 sdp_set_browse_groups(record, root);
1009 sdp_set_service_classes(record, svclass_id);
1014 sdp_set_profile_descs(record, pfseq);
1029 sdp_set_access_protos(record, aproto);
1032 sdp_attr_add(record, SDP_ATTR_SUPPORTED_FEATURES, features);
1035 sdp_set_info_attr(record, "Audio Source", 0, 0);
1037 sdp_set_info_attr(record, "Audio Sink", 0, 0)
1058 sdp_record_t *record; local
    [all...]
headset.c 1414 const sdp_record_t *record, uint16_t svc)
1419 if (sdp_get_access_protos(record, &protos) < 0) {
1420 error("Unable to get access protos from headset record");
1430 error("Unable to get RFCOMM channel from Headset record");
1437 headset->hfp_handle = record->handle;
1440 headset->hsp_handle = record->handle;
1452 sdp_record_t *record = NULL; local
1459 error("Unable to get service record: %s (%d)",
1477 record = r->data;
1479 if (sdp_get_service_classes(record, &classes) < 0)
2099 const sdp_record_t *record; local
2201 const sdp_record_t *record; local
    [all...]
  /development/ndk/platforms/android-9/samples/native-audio/src/com/example/nativeaudio/
NativeAudio.java 112 ((Button) findViewById(R.id.record)).setOnClickListener(new OnClickListener() {
  /development/tools/monkeyrunner/src/com/android/monkeyrunner/
MonkeyRunner.java 227 // Record what device we are running on
385 * @param record whether to put the command in the xml file that stores test outputs
387 private static boolean sendMonkeyEvent(String command, Boolean print, Boolean record) throws IOException {
391 if (record)
404 if (record)
422 if (record)
431 * Record the command in the xml file
436 if (monkeyRecorder != null) { // don't record setup junk
443 * Record the response in the xml file
452 * Record the response and the filename in the xml file, store the file (to be zipped up later
    [all...]
  /external/v8/src/
log-utils.h 192 // Fills vector with a compressed version of the previous record.
193 // Returns false if there is no previous record.
196 // Stores a record if it differs from a previous one (or there's no previous).
197 // Returns true, if the record has been stored.
198 bool Store(const Vector<const char>& record);
202 // the previous record. Since there is no place for precedessors of a previous
203 // record, it can't be compressed at all.
  /frameworks/base/voip/jni/rtp/
AudioGroup.cpp 760 AudioRecord record; local
763 record.set(AUDIO_SOURCE_MIC, sampleRate, AudioSystem::PCM_16_BIT,
768 LOGD("latency: output %d, input %d", track.latency(), record.latency());
772 (track.latency() + record.latency()) * sampleRate / 1000);
785 record.start();
787 record.read(&one, sizeof(one));
823 status_t status = record.obtainBuffer(&buffer, 1);
828 record.releaseBuffer(&buffer);
  /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/src/
sdp-xml.c 396 * Will convert the sdp record to XML. The appender and data can be used
397 * to control where to output the record (e.g. file or a data buffer). The
411 appender(data, "<record>\n");
414 appender(data, "</record>\n");
445 sdp_data_t *sdp_xml_parse_uuid(const char *data, sdp_record_t *record)
476 if (record && ret)
477 sdp_pattern_add_uuid(record, &ret->val.uuid);
754 sdp_record_t *record)
781 return sdp_xml_parse_uuid(data, record);
  /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();
RIL.java     [all...]
  /packages/apps/Tag/src/com/android/apps/tag/record/
VCardRecord.java 17 package com.android.apps.tag.record;
70 * VCard Ndef Record object
153 * Returns a view in a list of record types for adding new records to a message.
179 public static VCardRecord parse(NdefRecord record) {
180 MimeRecord underlyingRecord = MimeRecord.parse(record);
203 public static boolean isVCard(NdefRecord record) {
205 parse(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.
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audioquality/experiments/
LoopbackExperiment.java 85 protected void compare(byte[] stim, byte[] record) {
148 Log.e(TAG, "Couldn't record");
  /external/skia/src/core/
SkPicturePlayback.h 24 explicit SkPicturePlayback(const SkPictureRecord& record);
  /external/webkit/WebKit/android/
TimeCounter.cpp 103 "record content (webview core)",
108 void TimeCounter::record(enum Type type, const char* functionName) function in class:android::TimeCounter
  /frameworks/base/media/libmedia/
AudioRecord.cpp 66 // We double the size of input buffer for ping pong use of record buffer.
162 LOGE("Could not get audio input for record source %d", inputSource);
330 // the record head position will reset to 0, so if a marker is set, we need
430 sp<IAudioRecord> record = audioFlinger->openRecord(getpid(), input, local
437 if (record == 0) {
438 LOGE("AudioFlinger could not create record track, status: %d", status);
441 sp<IMemory> cblk = record->getCblk();
447 mAudioRecord = record;
  /external/freetype/src/truetype/
ttpload.c 483 /* The maximum number of bytes in an hdmx device record is the */
556 FT_Byte* record = face->hdmx_table + 8; local
564 result = record + nn * record_size + gindex;
  /external/skia/src/animator/
SkDisplayXMLParser.cpp 250 Parent record = { displayable, type }; local
251 *fParents.append() = record;
  /libcore/luni/src/main/java/java/util/logging/
FileHandler.java 42 * By default, the I/O buffering mechanism is enabled, but when each log record
548 * @param record
549 * the log record to publish.
552 public synchronized void publish(LogRecord record) {
553 super.publish(record);
  /ndk/build/core/
add-toolchain.mk 43 # Now record the toolchain-specific information
  /external/webkit/WebCore/loader/icon/
IconDatabase.cpp 184 // Clear the in-memory record of every IconRecord, anything waiting to be read from disk, and anything waiting to be written to disk
255 // If the initial URL import isn't complete, it's possible to have a PageURL record without an associated icon
261 // The only way we should *not* have an icon record is if this pageURL is retained but has no icon yet - make sure of that
408 PageURLRecord* record = m_pageURLToRecordMap.get(pageURLOriginal); local
412 if (!record) {
415 record = new PageURLRecord(pageURL);
416 m_pageURLToRecordMap.set(pageURL, record);
419 if (!record->retain()) {
423 // This page just had its retain count bumped from 0 to 1 - Record that fact
432 // If this pageURL waiting to be sync'ed, update the sync record
1289 PageURLRecord* record = m_pageURLToRecordMap.get(urls[i]); local
    [all...]
  /external/bluetooth/bluez/serial/
port.c 384 sdp_record_t *record = NULL; local
395 error("Unable to get service record: %s (%d)", strerror(-err),
402 error("No record found");
403 reply = failed(port->msg, "No record found");
407 record = recs->data;
409 if (sdp_get_access_protos(record, &protos) < 0) {
410 error("Unable to get access protos from port record");
  /external/webkit/WebCore/platform/graphics/win/
FontCacheWin.cpp 73 static int CALLBACK metaFileEnumProc(HDC hdc, HANDLETABLE* table, CONST ENHMETARECORD* record, int tableEntries, LPARAM logFont)
75 if (record->iType == EMR_EXTCREATEFONTINDIRECTW) {
76 const EMREXTCREATEFONTINDIRECTW* createFontRecord = reinterpret_cast<const EMREXTCREATEFONTINDIRECTW*>(record);
  /frameworks/base/services/java/com/android/server/
LocationManagerService.java 911 UpdateRecord record = records.get(i); local
1060 UpdateRecord record = records.get(i); local
    [all...]

Completed in 723 milliseconds

1 2 3 45 6 7 8