Searched refs:option (Results 1 - 18 of 18) sorted by relevance

/frameworks/base/media/java/android/media/
H A DMediaMetadataRetriever.java165 * the given option if possible, and returns it as a bitmap. This is
173 * negative, time position and option will ignored, and any frame
176 * @param option a hint on how the frame is found. Use
191 public Bitmap getFrameAtTime(long timeUs, int option) { argument
192 if (option < OPTION_PREVIOUS_SYNC ||
193 option > OPTION_CLOSEST) {
194 throw new IllegalArgumentException("Unsupported option: " + option);
197 return _getFrameAtTime(timeUs, option);
212 * negative, time position and option wil
242 _getFrameAtTime(long timeUs, int option) argument
[all...]
/frameworks/base/include/media/
H A DMediaMetadataRetrieverInterface.h35 virtual VideoFrame* getFrameAtTime(int64_t timeUs, int option) = 0;
47 virtual VideoFrame* getFrameAtTime(int64_t timeUs, int option) { return NULL; } argument
H A DIMediaMetadataRetriever.h35 virtual sp<IMemory> getFrameAtTime(int64_t timeUs, int option) = 0;
H A Dmediametadataretriever.h61 sp<IMemory> getFrameAtTime(int64_t timeUs, int option);
/frameworks/base/obex/javax/obex/
H A DObexSession.java77 byte[] option = ObexHelper.getTagValue((byte)0x01, header.mAuthChall);
111 if (option != null) {
112 if ((option[0] & 0x01) != 0) {
116 if ((option[0] & 0x02) != 0) {
147 * 2 option tag length value triples. The required triple has a tag of
/frameworks/base/media/libdrm/mobile1/include/objmng/
H A Ddrm_rights_manager.h52 * \param option The option to get id or uid, the value includes: GET_ID, GET_UID.
58 int32_t drm_readFromUidTxt(uint8_t* Uid, int32_t* id, int32_t option);
66 * \param option The option include: GET_ROAMOUNT, GET_ALL_RO, SAVE_ALL_RO, GET_A_RO, SAVE_A_RO.
72 int32_t drm_writeOrReadInfo(int32_t id, T_DRM_Rights* Ro, int32_t* RoAmount, int32_t option);
/frameworks/base/media/libstagefright/include/
H A DStagefrightMetadataRetriever.h38 virtual VideoFrame *getFrameAtTime(int64_t timeUs, int option);
/frameworks/base/media/libmedia/
H A DIMediaMetadataRetriever.cpp125 sp<IMemory> getFrameAtTime(int64_t timeUs, int option) argument
127 LOGV("getTimeAtTime: time(%lld us) and option(%d)", timeUs, option);
131 data.writeInt32(option);
205 int option = data.readInt32(); local
206 LOGV("getTimeAtTime: time(%lld us) and option(%d)", timeUs, option);
210 sp<IMemory> bitmap = getFrameAtTime(timeUs, option);
H A Dmediametadataretriever.cpp126 sp<IMemory> MediaMetadataRetriever::getFrameAtTime(int64_t timeUs, int option) argument
128 LOGV("getFrameAtTime: time(%lld us) option(%d)", timeUs, option);
134 return mRetriever->getFrameAtTime(timeUs, option);
/frameworks/base/media/libmediaplayerservice/
H A DMetadataRetrieverClient.h46 virtual sp<IMemory> getFrameAtTime(int64_t timeUs, int option);
H A DMetadataRetrieverClient.cpp185 sp<IMemory> MetadataRetrieverClient::getFrameAtTime(int64_t timeUs, int option) argument
187 LOGV("getFrameAtTime: time(%lld us) option(%d)", timeUs, option);
194 VideoFrame *frame = mRetriever->getFrameAtTime(timeUs, option);
/frameworks/base/media/libdrm/mobile1/src/objmng/
H A Ddrm_rights_manager.c151 int32_t drm_readFromUidTxt(uint8_t* Uid, int32_t* id, int32_t option) argument
199 if (option == GET_UID) {
213 if (option == GET_ID) {
251 int32_t drm_writeOrReadInfo(int32_t id, T_DRM_Rights* Ro, int32_t* RoAmount, int32_t option) argument
276 if (GET_ALL_RO == option || GET_A_RO == option)
279 if (GET_ROAMOUNT == option) {
291 switch(option) {
/frameworks/base/media/libstagefright/
H A DStagefrightMetadataRetriever.cpp244 int64_t timeUs, int option) {
246 LOGV("getFrameAtTime: %lld us option: %d", timeUs, option);
284 timeUs, option);
291 timeUs, option);
243 getFrameAtTime( int64_t timeUs, int option) argument
/frameworks/base/media/jni/
H A Dandroid_media_MediaMetadataRetriever.cpp134 static jobject android_media_MediaMetadataRetriever_getFrameAtTime(JNIEnv *env, jobject thiz, jlong timeUs, jint option) argument
136 LOGV("getFrameAtTime: %lld us option: %d", timeUs, option);
145 sp<IMemory> frameMemory = retriever->getFrameAtTime(timeUs, option);
/frameworks/base/tools/aidl/
H A Daidl_language_l.l31 %option yylineno
32 %option noyywrap
/frameworks/base/libs/rs/
H A Dspec.l1 %option stack
/frameworks/base/tools/aapt/
H A DCommand.cpp405 fprintf(stderr, "ERROR: no dump option specified\n");
414 const char* option = bundle->getFileSpecEntry(0); local
430 if (strcmp("resources", option) == 0) {
433 } else if (strcmp("xmltree", option) == 0) {
460 } else if (strcmp("xmlstrings", option) == 0) {
501 if (strcmp("permissions", option) == 0) {
541 } else if (strcmp("badging", option) == 0) {
1198 } else if (strcmp("configurations", option) == 0) {
1206 fprintf(stderr, "ERROR: unknown dump option '%s'\n", option);
[all...]
/frameworks/base/tools/obbtool/
H A DMain.cpp36 static const struct option longopts[] = {

Completed in 254 milliseconds