Searched defs:extra (Results 1 - 25 of 30) sorted by last modified time

12

/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/native/include/media/drm/
H A DDrmAPI.h301 void sendEvent(EventType eventType, int extra,
315 virtual void sendEvent(DrmPlugin::EventType eventType, int extra,
320 inline void DrmPlugin::sendEvent(EventType eventType, int extra, argument
329 listener->sendEvent(eventType, extra, sessionId, data);
/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/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java922 public void addInputExtra(boolean create, String extra) { argument
925 bundle.putBoolean(extra, true);
/frameworks/ex/variablespeed/tests/src/com/android/ex/variablespeed/
H A DAwaitableErrorListener.java35 public boolean onError(MediaPlayer mp, int what, int extra) { argument
/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/base/tools/aapt/
H A DAaptAssets.cpp676 // if there are extra parts, it doesn't match
1586 const size_t extra = mDataSize%wordSize; local
1587 if (extra == 0) {
1592 void* data = editData(initial+(wordSize-extra));
1594 memset(((uint8_t*)data) + initial, 0, wordSize-extra);
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;
/frameworks/base/tools/aidl/
H A Daidl_language.h25 extra_text_type* extra; member in struct:buffer_type
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;
/frameworks/base/libs/hwui/
H A DPathTessellator.cpp246 * 2 - can zig-zag across 'extra' vertices at either end, to create round caps
250 const int extra = paintInfo.capExtraDivisions(); local
251 const int allocSize = (vertices.size() + extra) * 2;
255 if (extra > 0) {
263 const float dTheta = PI / (extra + 1);
267 for (int i = 0; i < extra; i++) {
268 if (i < extra / 2) {
269 capOffset = extra - 2 * i - 1;
271 capOffset = 2 * i - extra;
290 int currentIndex = extra;
395 const int extra = paintInfo.capExtraDivisions(); local
565 const int extra = paintInfo.capExtraDivisions(); local
844 const int extra = paintInfo.capExtraDivisions(); local
[all...]
/frameworks/base/media/java/android/media/
H A DMediaDrm.java189 * @param extra an secondary error code
192 void onEvent(MediaDrm md, byte[] sessionId, int event, int extra, byte[] data); argument
273 int eventType, int extra, Object obj)
280 Message m = md.mEventHandler.obtainMessage(DRM_EVENT, eventType, extra, obj);
272 postEventFromNative(Object mediadrm_ref, int eventType, int extra, Object obj) argument
H A DMediaPlayer.java1281 // writeArray) which burns an extra int per element to encode
2587 * @param extra an extra code, specific to the error. Typically
2599 boolean onError(MediaPlayer mp, int what, int extra); argument
2716 * @param extra an extra code, specific to the info. Typically
2722 boolean onInfo(MediaPlayer mp, int what, int extra); argument
H A DMediaRecorder.java788 * @param extra an extra code, specific to the error type
790 void onError(MediaRecorder mr, int what, int extra); argument
905 * @param extra an extra code, specific to the error type
907 void onInfo(MediaRecorder mr, int what, int extra); argument
/frameworks/base/media/jni/
H A Dandroid_media_MediaDrm.cpp124 virtual void notify(DrmPlugin::EventType eventType, int extra, const Parcel *obj = NULL);
157 void JNIDrmListener::notify(DrmPlugin::EventType eventType, int extra, argument
188 jeventType, extra, jParcel);
338 void JDrm::notify(DrmPlugin::EventType eventType, int extra, const Parcel *obj) { argument
346 listener->notify(eventType, extra, obj);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DMediaRecorderStressTest.java142 public void onError(MediaRecorder mr, int what, int extra) { argument
143 fail(String.format("Media recorder error, code: %d\textra: %d", what, extra));
/frameworks/av/media/libstagefright/httplive/
H A DLiveSession.cpp116 sp<AMessage> extra; local
117 if (!(*accessUnit)->meta()->findMessage("extra", &extra)) {
118 extra.clear();
121 ALOGI("[%s] read discontinuity of type %d, extra = %s",
124 extra == NULL ? "NULL" : extra->debugString().c_str());
H A DPlaylistFetcher.cpp451 ATSParser::DiscontinuityType type, const sp<AMessage> &extra) {
453 mPacketSources.valueAt(i)->queueDiscontinuity(type, extra);
662 NULL /* extra */);
728 sp<AMessage> extra = new AMessage; local
729 extra->setInt64(IStreamListener::kKeyMediaTimeUs, mNextPTSTimeUs);
732 ATSParser::DISCONTINUITY_SEEK, extra);
450 queueDiscontinuity( ATSParser::DiscontinuityType type, const sp<AMessage> &extra) argument
/frameworks/av/media/libstagefright/mpeg2ts/
H A DATSParser.cpp59 DiscontinuityType type, const sp<AMessage> &extra);
114 DiscontinuityType type, const sp<AMessage> &extra);
217 DiscontinuityType type, const sp<AMessage> &extra) {
220 && extra != NULL
221 && extra->findInt64(
227 mStreams.editValueAt(i)->signalDiscontinuity(type, extra);
625 DiscontinuityType type, const sp<AMessage> &extra) {
650 if (extra != NULL
651 && extra->findInt64(
657 extra
216 signalDiscontinuity( DiscontinuityType type, const sp<AMessage> &extra) argument
624 signalDiscontinuity( DiscontinuityType type, const sp<AMessage> &extra) argument
954 signalDiscontinuity( DiscontinuityType type, const sp<AMessage> &extra) argument
[all...]
H A DAnotherPacketSource.cpp174 const sp<AMessage> &extra) {
197 buffer->meta()->setMessage("extra", extra);
172 queueDiscontinuity( ATSParser::DiscontinuityType type, const sp<AMessage> &extra) argument
/frameworks/base/core/java/android/webkit/
H A DWebView.java402 public void setExtra(String extra) { argument
403 mExtra = extra;
419 * or contain extra information about this result.
784 if (DebugFlags.TRACE_API) Log.d(LOGTAG, "loadUrl(extra headers)=" + url);
1158 * type is set to SRC_ANCHOR_TYPE and the URL is set in the "extra" field.
1163 * the "extra" field. A type of
1166 * to PHONE_TYPE and the phone number is set in the "extra" field of
1168 * to GEO_TYPE and the address is set in the "extra" field of HitTestResult.
1170 * and the email is set in the "extra" field of HitTestResult. Otherwise,
1327 * Pauses any extra processin
[all...]
/frameworks/av/drm/mediadrm/plugins/mock/
H A DMockDrmCryptoPlugin.cpp375 unsigned code, extra; local
376 sscanf(value.string(), "%d %d", &code, &extra);
391 (int)code, extra, pSessionId ? vectorToString(*pSessionId) : "{}",
394 sendEvent(eventType, extra, pSessionId, pData);
/frameworks/av/media/libmedia/
H A DIDrmClient.cpp43 virtual void notify(DrmPlugin::EventType eventType, int extra, const Parcel *obj) argument
48 data.writeInt32(extra);
67 int extra = data.readInt32(); local
73 notify((DrmPlugin::EventType)eventType, extra, &obj);
/frameworks/av/media/libmediaplayerservice/
H A DDrm.cpp84 void Drm::sendEvent(DrmPlugin::EventType eventType, int extra, argument
109 listener->notify(eventType, extra, &obj);

Completed in 513 milliseconds

12