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

/frameworks/base/core/java/android/webkit/
H A DHTML5Audio.java111 public boolean onError(MediaPlayer mp, int what, int extra) { argument
H A DHTML5VideoViewProxy.java270 public boolean onError(MediaPlayer mp, int what, int extra) { argument
H A DWebView.java884 private void setExtra(String extra) { argument
885 mExtra = extra;
1609 * Load the given url with the extra headers.
1611 * @param extraHeaders The extra headers sent with this url. This should not
1959 * is set to SRC_ANCHOR_TYPE and the url is set in the "extra" field. If the
1964 * the "extra" field. A type of
1967 * to PHONE_TYPE and the phone number is set in the "extra" field of
1969 * to GEO_TYPE and the address is set in the "extra" field of HitTestResult.
1971 * and the email is set in the "extra" field of HitTestResult. Otherwise,
2221 the bottom/right coordinates. This catches the possible extra pixel
7875 nativeDrawExtras(Canvas canvas, int extra) argument
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
H A DMediaRecorderStressTest.java137 public void onError(MediaRecorder mr, int what, int extra) { argument
/frameworks/base/tools/aidl/
H A Daidl_language.h25 extra_text_type* extra; member in struct:buffer_type
H A Dgenerate_java.cpp235 gather_comments(extra_text_type* extra) argument
238 while (extra) {
239 if (extra->which == SHORT_COMMENT) {
240 s += extra->data;
242 else if (extra->which == LONG_COMMENT) {
244 s += extra->data;
247 extra = extra->next;
336 decl->comment = gather_comments(method->comments_token->extra);
449 proxy->comment = gather_comments(method->comments_token->extra);
[all...]
/frameworks/base/libs/binder/
H A DMemoryDealer.cpp317 int extra = 0; local
319 extra = ( -cur->start & ((pagesize/kMemoryAlign)-1) ) ;
322 if (cur->free && (cur->size >= (size+extra))) {
338 int extra = 0; local
340 extra = ( -free_chunk->start & ((pagesize/kMemoryAlign)-1) ) ;
341 if (extra) {
342 chunk_t* split = new chunk_t(free_chunk->start, extra);
343 free_chunk->start += extra;
351 const ssize_t tail_free = free_size - (size+extra);
/frameworks/base/opengl/libagl/
H A Dstate.cpp65 ogles_context_t *ogles_init(size_t extra) argument
67 void* const base = malloc(extra + sizeof(ogles_context_t) + 32);
71 (ogles_context_t *)((ptrdiff_t(base) + extra + 31) & ~0x1FL);
/frameworks/base/tools/aapt/
H A DStringPool.cpp323 size_t extra = sizeof(ResStringPool_span)-sizeof(ResStringPool_ref); local
324 uint8_t* dat = (uint8_t*)pool->editData(preSize + styPos + extra);
330 while (extra > 0) {
332 extra -= sizeof(uint32_t);
334 styPos += extra;
H A DAaptAssets.cpp497 // if there are extra parts, it doesn't match
1205 const size_t extra = mDataSize%wordSize; local
1206 if (extra == 0) {
1211 void* data = editData(initial+(wordSize-extra));
1213 memset(((uint8_t*)data) + initial, 0, wordSize-extra);
/frameworks/base/libs/surfaceflinger_client/
H A DSharedBufferStack.cpp596 const int extra = newNumBuffers - numBuffers; local
610 memmove(&index[head + extra], &index[head], nb);
612 // move head 'extra' ahead, this doesn't impact stack.index[head];
613 stack.head = head + extra;
615 stack.available += extra;
619 for (int i=0 ; i<extra ; i++) {
/frameworks/base/media/java/android/media/
H A DMediaPlayer.java1030 // writeArray) which burns an extra int per element to encode
1566 * @param extra an extra code, specific to the error. Typically
1572 boolean onError(MediaPlayer mp, int what, int extra); argument
1647 * @param extra an extra code, specific to the info. Typically
1653 boolean onInfo(MediaPlayer mp, int what, int extra); argument
H A DMediaRecorder.java611 * @param extra an extra code, specific to the error type
613 void onError(MediaRecorder mr, int what, int extra); argument
659 * @param extra an extra code, specific to the error type
661 void onInfo(MediaRecorder mr, int what, int extra); argument

Completed in 382 milliseconds