/frameworks/base/media/java/android/media/ |
D | MediaMetadataRetriever.java | 219 public Bitmap getFrameAtTime(long timeUs, int option) { in getFrameAtTime() argument 220 if (option < OPTION_PREVIOUS_SYNC || in getFrameAtTime() 221 option > OPTION_CLOSEST) { in getFrameAtTime() 222 throw new IllegalArgumentException("Unsupported option: " + option); in getFrameAtTime() 225 return _getFrameAtTime(timeUs, option); in getFrameAtTime() 270 private native Bitmap _getFrameAtTime(long timeUs, int option); in _getFrameAtTime() argument
|
/frameworks/base/obex/javax/obex/ |
D | ObexSession.java | 77 byte[] option = ObexHelper.getTagValue((byte)0x01, header.mAuthChall); in handleAuthChall() 111 if (option != null) { in handleAuthChall() 112 if ((option[0] & 0x01) != 0) { in handleAuthChall() 116 if ((option[0] & 0x02) != 0) { in handleAuthChall()
|
/frameworks/base/media/libmedia/ |
D | IMediaMetadataRetriever.cpp | 119 sp<IMemory> getFrameAtTime(int64_t timeUs, int option) in getFrameAtTime() argument 121 LOGV("getTimeAtTime: time(%lld us) and option(%d)", timeUs, option); in getFrameAtTime() 125 data.writeInt32(option); in getFrameAtTime() 210 int option = data.readInt32(); in onTransact() local 211 LOGV("getTimeAtTime: time(%lld us) and option(%d)", timeUs, option); in onTransact() 215 sp<IMemory> bitmap = getFrameAtTime(timeUs, option); in onTransact()
|
D | mediametadataretriever.cpp | 127 sp<IMemory> MediaMetadataRetriever::getFrameAtTime(int64_t timeUs, int option) in getFrameAtTime() argument 129 LOGV("getFrameAtTime: time(%lld us) option(%d)", timeUs, option); in getFrameAtTime() 135 return mRetriever->getFrameAtTime(timeUs, option); in getFrameAtTime()
|
/frameworks/base/include/media/ |
D | MediaMetadataRetrieverInterface.h | 39 virtual VideoFrame* getFrameAtTime(int64_t timeUs, int option) = 0; 51 virtual VideoFrame* getFrameAtTime(int64_t timeUs, int option) { return NULL; } in getFrameAtTime() argument
|
D | IMediaMetadataRetriever.h | 40 virtual sp<IMemory> getFrameAtTime(int64_t timeUs, int option) = 0;
|
D | mediametadataretriever.h | 73 sp<IMemory> getFrameAtTime(int64_t timeUs, int option);
|
/frameworks/base/media/libdrm/mobile1/include/objmng/ |
D | drm_rights_manager.h | 58 int32_t drm_readFromUidTxt(uint8_t* Uid, int32_t* id, int32_t option); 72 int32_t drm_writeOrReadInfo(int32_t id, T_DRM_Rights* Ro, int32_t* RoAmount, int32_t option);
|
/frameworks/media/libvideoeditor/vss/3gpwriter/inc/ |
D | M4MP4W_Writer.h | 186 M4OSA_OptionID option, 204 M4OSA_OptionID option,
|
/frameworks/media/libvideoeditor/osal/inc/ |
D | M4OSA_Thread.h | 113 M4OSA_ThreadOptionID option, 118 M4OSA_ThreadOptionID option,
|
/frameworks/base/media/libdrm/mobile1/src/objmng/ |
D | drm_rights_manager.c | 151 int32_t drm_readFromUidTxt(uint8_t* Uid, int32_t* id, int32_t option) in drm_readFromUidTxt() argument 199 if (option == GET_UID) { in drm_readFromUidTxt() 213 if (option == GET_ID) { in drm_readFromUidTxt() 251 int32_t drm_writeOrReadInfo(int32_t id, T_DRM_Rights* Ro, int32_t* RoAmount, int32_t option) in drm_writeOrReadInfo() argument 276 if (GET_ALL_RO == option || GET_A_RO == option) in drm_writeOrReadInfo() 279 if (GET_ROAMOUNT == option) { in drm_writeOrReadInfo() 291 switch(option) { in drm_writeOrReadInfo()
|
/frameworks/base/docs/html/guide/developing/tools/ |
D | monkey.jd | 100 <td>Inserts a fixed delay between events. You can use this option to slow down the Monkey. 162 in all packages. To specify multiple packages, use the -p option multiple times — one -p 163 option per package.</td> 172 option multiple times — one -c option per category.</td> 187 <td>If set, this option will generate profiling reports immediately before and after 197 unhandled exception. If you specify this option, the Monkey will continue to send events to 204 as a "Application Not Responding" dialog. If you specify this option, the Monkey will continue to 212 this option, the Monkey will continue to send events to the system, until the count is 219 running. When this option is set, it will signal the system to stop the process in which the error
|
D | logcat.jd | 20 [adb] logcat [<option>] ... [<filter-spec>] ... 83 is 4. Requires the <code>-r</code> option.</td> 90 16. Requires the <code>-f</code> option.</td>
|
D | mksdcard.jd | 48 the emulator's <code>-sdcard</code> option. For more information, see <a href= 51 <p>The usage for the <code>-sdcard</code> option is as follows:</p>
|
/frameworks/base/docs/html/guide/developing/debugging/ |
D | debugging-devtools.jd | 37 <li>It will enable you to select the <em>Wait for Debugger</em> option to pause application 47 When you change this option, any currently running instances of the selected application will 49 in the previous option. You can do the same thing by adding {@link 63 to force. Choosing this option will probably reveal a number of problems in your application
|
D | debugging-log.jd | 65 [adb] logcat [<option>] ... [<filter-spec>] ... 111 is 4. Requires the <code>-r</code> option.</td> 118 16. Requires the <code>-f</code> option.</td> 220 you use the <code>-v</code> option and specify one of the supported output formats listed 243 <code>-v</code> option:</p> 254 <p>Note that you can only specify one output format with the <code>-v</code> option.</p> 260 …run the <code>logcat</code> command with the <code>-b</code> option, to request viewing of an alte… 272 <p>The usage of the <code>-b</code> option is:</p>
|
/frameworks/base/media/libmediaplayerservice/ |
D | MetadataRetrieverClient.cpp | 166 sp<IMemory> MetadataRetrieverClient::getFrameAtTime(int64_t timeUs, int option) in getFrameAtTime() argument 168 LOGV("getFrameAtTime: time(%lld us) option(%d)", timeUs, option); in getFrameAtTime() 175 VideoFrame *frame = mRetriever->getFrameAtTime(timeUs, option); in getFrameAtTime()
|
D | MetadataRetrieverClient.h | 49 virtual sp<IMemory> getFrameAtTime(int64_t timeUs, int option);
|
/frameworks/base/core/java/android/speech/tts/ |
D | EventLogTags.logtags | 3 option java_package android.speech.tts;
|
/frameworks/base/core/java/android/content/ |
D | EventLogTags.logtags | 3 option java_package android.content;
|
/frameworks/base/core/java/android/webkit/ |
D | EventLogTags.logtags | 3 option java_package android.webkit;
|
/frameworks/base/media/libstagefright/include/ |
D | StagefrightMetadataRetriever.h | 41 virtual VideoFrame *getFrameAtTime(int64_t timeUs, int option);
|
/frameworks/base/media/libstagefright/ |
D | StagefrightMetadataRetriever.cpp | 277 int64_t timeUs, int option) { in getFrameAtTime() argument 279 LOGV("getFrameAtTime: %lld us option: %d", timeUs, option); in getFrameAtTime() 341 timeUs, option); in getFrameAtTime() 348 timeUs, option); in getFrameAtTime()
|
/frameworks/base/tools/aidl/ |
D | aidl_language_l.l | 31 %option yylineno 32 %option noyywrap
|
/frameworks/base/media/jni/ |
D | android_media_MediaMetadataRetriever.cpp | 225 …d_media_MediaMetadataRetriever_getFrameAtTime(JNIEnv *env, jobject thiz, jlong timeUs, jint option) in android_media_MediaMetadataRetriever_getFrameAtTime() argument 227 LOGV("getFrameAtTime: %lld us option: %d", timeUs, option); in android_media_MediaMetadataRetriever_getFrameAtTime() 236 sp<IMemory> frameMemory = retriever->getFrameAtTime(timeUs, option); in android_media_MediaMetadataRetriever_getFrameAtTime()
|