Searched defs:extra (Results 1 - 24 of 24) sorted by relevance

/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DConfirmationActivity.java24 private String getTextExtra(String extra, String def) { argument
25 final String text = getIntent().getStringExtra(extra);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerStreamListener.cpp75 Command cmd, bool synchronous, const sp<AMessage> &extra) {
81 entry.mExtra = extra;
96 void *data, size_t size, sp<AMessage> *extra) {
99 extra->clear();
128 *extra = entry->mExtra;
74 issueCommand( Command cmd, bool synchronous, const sp<AMessage> &extra) argument
95 read( void *data, size_t size, sp<AMessage> *extra) argument
H A DStreamingSource.cpp57 sp<AMessage> extra; local
58 ssize_t n = mStreamListener->read(buffer, sizeof(buffer), &extra);
69 if (extra != NULL
70 && extra->findInt32(
81 (ATSParser::DiscontinuityType)type, extra);
92 extra);
H A DHTTPLiveSource.cpp124 sp<AMessage> extra; local
129 extra);
H A DNuPlayer.cpp752 sp<AMessage> extra; local
753 if (accessUnit->meta()->findMessage("extra", &extra)
754 && extra != NULL) {
756 if (extra->findInt64(
/frameworks/base/tools/aidl/
H A Dgenerate_java.cpp34 gather_comments(extra_text_type* extra) argument
37 while (extra) {
38 if (extra->which == SHORT_COMMENT) {
39 s += extra->data;
41 else if (extra->which == LONG_COMMENT) {
43 s += extra->data;
46 extra = extra->next;
H A Daidl_language.h25 extra_text_type* extra; member in struct:buffer_type
/frameworks/ex/variablespeed/tests/src/com/android/ex/variablespeed/
H A DAwaitableErrorListener.java35 public boolean onError(MediaPlayer mp, int what, int extra) { argument
/frameworks/av/media/libstagefright/mpeg2ts/
H A DAnotherPacketSource.cpp155 const sp<AMessage> &extra) {
177 buffer->meta()->setMessage("extra", extra);
153 queueDiscontinuity( ATSParser::DiscontinuityType type, const sp<AMessage> &extra) argument
H A DATSParser.cpp58 DiscontinuityType type, const sp<AMessage> &extra);
105 DiscontinuityType type, const sp<AMessage> &extra);
203 DiscontinuityType type, const sp<AMessage> &extra) {
205 mStreams.editValueAt(i)->signalDiscontinuity(type, extra);
549 DiscontinuityType type, const sp<AMessage> &extra) {
572 if (extra != NULL
573 && extra->findInt64(
579 extra->setInt64("resume-at-mediatimeUs", resumeAtMediaTimeUs);
584 mSource->queueDiscontinuity(type, extra);
865 DiscontinuityType type, const sp<AMessage> &extra) {
202 signalDiscontinuity( DiscontinuityType type, const sp<AMessage> &extra) argument
548 signalDiscontinuity( DiscontinuityType type, const sp<AMessage> &extra) argument
864 signalDiscontinuity( DiscontinuityType type, const sp<AMessage> &extra) argument
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DMediaRecorderStressTest.java143 public void onError(MediaRecorder mr, int what, int extra) { argument
/frameworks/base/core/java/android/webkit/
H A DHTML5Audio.java158 public boolean onError(MediaPlayer mp, int what, int extra) { argument
H A DHTML5VideoViewProxy.java321 public boolean onError(MediaPlayer mp, int what, int extra) { argument
758 public boolean onInfo(MediaPlayer mp, int what, int extra) { argument
760 sendMessage(obtainMessage(BUFFERING_START, what, extra));
762 sendMessage(obtainMessage(BUFFERING_END, what, extra));
H A DWebView.java414 public void setExtra(String extra) { argument
415 mExtra = extra;
431 * or contain extra information about this result.
1040 * type is set to SRC_ANCHOR_TYPE and the URL is set in the "extra" field.
1045 * the "extra" field. A type of
1048 * to PHONE_TYPE and the phone number is set in the "extra" field of
1050 * to GEO_TYPE and the address is set in the "extra" field of HitTestResult.
1052 * and the email is set in the "extra" field of HitTestResult. Otherwise,
1199 * Pauses any extra processing associated with this WebView and its
H A DWebViewClassic.java3004 the bottom/right coordinates. This catches the possible extra pixels of
8526 int color, int extra);
8525 nativeDraw(Canvas canvas, RectF visibleRect, int color, int extra) argument
/frameworks/base/tools/aapt/
H A DStringPool.cpp504 size_t extra = sizeof(ResStringPool_span)-sizeof(ResStringPool_ref); local
505 uint8_t* dat = (uint8_t*)pool->editData(preSize + styPos + extra);
511 while (extra > 0) {
513 extra -= sizeof(uint32_t);
515 styPos += extra;
H A DAaptAssets.cpp655 // if there are extra parts, it doesn't match
1524 const size_t extra = mDataSize%wordSize; local
1525 if (extra == 0) {
1530 void* data = editData(initial+(wordSize-extra));
1532 memset(((uint8_t*)data) + initial, 0, wordSize-extra);
/frameworks/native/libs/binder/
H A DMemoryDealer.cpp321 int extra = 0; local
323 extra = ( -cur->start & ((pagesize/kMemoryAlign)-1) ) ;
326 if (cur->free && (cur->size >= (size+extra))) {
342 int extra = 0; local
344 extra = ( -free_chunk->start & ((pagesize/kMemoryAlign)-1) ) ;
345 if (extra) {
346 chunk_t* split = new chunk_t(free_chunk->start, extra);
347 free_chunk->start += extra;
355 const ssize_t tail_free = free_size - (size+extra);
/frameworks/native/opengl/libagl/
H A Dstate.cpp66 ogles_context_t *ogles_init(size_t extra) argument
68 void* const base = malloc(extra + sizeof(ogles_context_t) + 32);
72 (ogles_context_t *)((ptrdiff_t(base) + extra + 31) & ~0x1FL);
/frameworks/av/media/libstagefright/chromium_http/
H A Dsupport.cpp440 const KeyedVector<String8, String8> *extra,
449 if (offset != 0 || extra != NULL) {
460 if (extra != NULL) {
461 for (size_t i = 0; i < extra->size(); ++i) {
463 s.append(extra->keyAt(i).string());
465 s.append(extra->valueAt(i).string());
438 onInitiateConnection( const GURL &url, const KeyedVector<String8, String8> *extra, off64_t offset) argument
/frameworks/support/v4/java/android/support/v4/app/
H A DShareCompat.java60 * Intent extra that stores the name of the calling package for an ACTION_SEND intent.
71 * Intent extra that stores the {@link ComponentName} of the calling activity for
343 private void combineArrayExtra(String extra, ArrayList<String> add) { argument
344 String[] currentAddresses = mIntent.getStringArrayExtra(extra);
351 mIntent.putExtra(extra, finalAddresses);
354 private void combineArrayExtra(String extra, String[] add) { argument
357 String[] old = intent.getStringArrayExtra(extra);
362 intent.putExtra(extra, result);
640 * in addition to extra metadata about the app that shared the content.
858 * was not started for a result, IntentBuilder will read this from extra metadat
[all...]
/frameworks/base/media/java/android/media/
H A DMediaRecorder.java745 * @param extra an extra code, specific to the error type
747 void onError(MediaRecorder mr, int what, int extra); argument
862 * @param extra an extra code, specific to the error type
864 void onInfo(MediaRecorder mr, int what, int extra); argument
H A DMediaPlayer.java1239 // writeArray) which burns an extra int per element to encode
2281 * @param extra an extra code, specific to the error. Typically
2287 boolean onError(MediaPlayer mp, int what, int extra); argument
2380 * @param extra an extra code, specific to the info. Typically
2386 boolean onInfo(MediaPlayer mp, int what, int extra); argument
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java922 public void addInputExtra(boolean create, String extra) { argument
925 bundle.putBoolean(extra, true);

Completed in 2514 milliseconds