Searched defs:flags (Results 376 - 400 of 625) sorted by relevance

<<11121314151617181920>>

/frameworks/av/media/libstagefright/
H A DAACExtractor.cpp222 sp<MetaData> AACExtractor::getTrackMetaData(size_t index, uint32_t flags) { argument
H A DFragmentedMP4Extractor.cpp138 uint32_t FragmentedMP4Extractor::flags() const { function in class:android::FragmentedMP4Extractor
153 size_t index, uint32_t flags) {
152 getTrackMetaData( size_t index, uint32_t flags) argument
H A DOMXClient.cpp103 OMX_U32 flags, OMX_TICKS timestamp);
304 OMX_U32 flags, OMX_TICKS timestamp) {
306 node, buffer, range_offset, range_length, flags, timestamp);
300 emptyBuffer( node_id node, buffer_id buffer, OMX_U32 range_offset, OMX_U32 range_length, OMX_U32 flags, OMX_TICKS timestamp) argument
H A DStagefrightMetadataRetriever.cpp142 uint32_t flags,
158 NULL, flags | OMXCodec::kClientNeedsFramebuffer);
138 extractVideoFrameWithCodecFlags( OMXClient *client, const sp<MetaData> &trackMeta, const sp<MediaSource> &source, uint32_t flags, int64_t frameTimeUs, int seekMode) argument
H A DWAVExtractor.cpp129 size_t index, uint32_t flags) {
128 getTrackMetaData( size_t index, uint32_t flags) argument
/frameworks/av/media/libstagefright/id3/
H A DID3.cpp80 uint8_t flags; member in struct:android::id3_header
99 if (header.flags & 0x3f) {
105 if (header.flags & 0x40) {
112 if (header.flags & 0x1f) {
118 if (header.flags & 0x0f) {
176 } else if (header.flags & 0x80) {
183 if (header.version_major == 3 && (header.flags & 0x40)) {
225 } else if (header.version_major == 4 && (header.flags & 0x40)) {
302 uint16_t flags = U16_AT(&mData[offset + 8]); local
303 uint16_t prevFlags = flags;
654 uint16_t flags = U16_AT(&mParent.mData[mOffset + 8]); local
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DARTPConnection.cpp70 ARTPConnection::ARTPConnection(uint32_t flags) argument
71 : mFlags(flags),
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.cpp300 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) {
319 return BnCameraService::onTransact(code, data, reply, flags);
299 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/base/core/java/android/app/
H A DPendingIntent.java54 * categories, and components, and same flags), it will receive a PendingIntent
81 * Intents you will use, then you can alternatively use the flags
208 * @param flags May be {@link #FLAG_ONE_SHOT}, {@link #FLAG_NO_CREATE},
210 * or any of the flags as supported by
219 Intent intent, int flags) {
220 return getActivity(context, requestCode, intent, flags, null);
235 * @param flags May be {@link #FLAG_ONE_SHOT}, {@link #FLAG_NO_CREATE},
237 * or any of the flags as supported by
248 Intent intent, int flags, Bundle options) {
259 flags, option
218 getActivity(Context context, int requestCode, Intent intent, int flags) argument
247 getActivity(Context context, int requestCode, Intent intent, int flags, Bundle options) argument
271 getActivityAsUser(Context context, int requestCode, Intent intent, int flags, Bundle options, UserHandle user) argument
331 getActivities(Context context, int requestCode, Intent[] intents, int flags) argument
377 getActivities(Context context, int requestCode, Intent[] intents, int flags, Bundle options) argument
402 getActivitiesAsUser(Context context, int requestCode, Intent[] intents, int flags, Bundle options, UserHandle user) argument
441 getBroadcast(Context context, int requestCode, Intent intent, int flags) argument
452 getBroadcastAsUser(Context context, int requestCode, Intent intent, int flags, UserHandle userHandle) argument
491 getService(Context context, int requestCode, Intent intent, int flags) argument
830 writeToParcel(Parcel out, int flags) argument
[all...]
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHostView.java606 public void writeToParcel(Parcel dest, int flags) { argument
/frameworks/base/core/java/android/content/pm/
H A DActivityInfo.java87 * Bit in {@link #flags} indicating whether this activity is able to
96 * Bit in {@link #flags} indicating that, when the activity's task is
103 * Bit in {@link #flags} indicating that, when the activity is the root
113 * Bit in {@link #flags} indicating that, when the activity is the root
120 * Bit in {@link #flags} indicating that the activity's state
127 * Bit in {@link #flags} that indicates that the activity should not
133 * Bit in {@link #flags} that indicates that the activity can be moved
139 * Bit in {@link #flags} indicating that, when the user navigates away
146 * Bit in {@link #flags} indicating that, when a request to close system
153 * Value for {@link #flags}
206 public int flags; field in class:ActivityInfo
[all...]
H A DApplicationInfo.java101 * Value for {@link #flags}: if set, this application is installed in the
107 * Value for {@link #flags}: set to true if this application would like to
116 * Value for {@link #flags}: set to true if this application has code
124 * Value for {@link #flags}: set to true if this application is persistent.
131 * Value for {@link #flags}: set to true if this application holds the
138 * Value for {@link #flags}: default value for the corresponding ActivityInfo flag.
145 * Value for {@link #flags}: default value for the corresponding ActivityInfo flag.
152 * Value for {@link #flags}: this is set if this application has been
158 * Value for {@link #flags}: this is set of the application has specified
165 * Value for {@link #flags}
353 public int flags = 0; field in class:ApplicationInfo
[all...]
/frameworks/base/core/java/android/content/res/
H A DCompatibilityInfo.java55 * A compatibility flags
168 if ((appInfo.flags & ApplicationInfo.FLAG_SUPPORTS_LARGE_SCREENS) != 0) {
178 if ((appInfo.flags & ApplicationInfo.FLAG_SUPPORTS_XLARGE_SCREENS) != 0) {
184 if ((appInfo.flags & ApplicationInfo.FLAG_RESIZEABLE_FOR_SCREENS) != 0) {
203 if ((appInfo.flags & ApplicationInfo.FLAG_SUPPORTS_XLARGE_SCREENS) != 0) {
211 if ((appInfo.flags & ApplicationInfo.FLAG_SUPPORTS_LARGE_SCREENS) != 0) {
228 if ((appInfo.flags & ApplicationInfo.FLAG_SUPPORTS_SCREEN_DENSITIES) != 0) {
573 public void writeToParcel(Parcel dest, int flags) { argument
/frameworks/base/core/java/android/net/
H A DNetworkStats.java168 public void writeToParcel(Parcel dest, int flags) { argument
/frameworks/base/core/java/android/nfc/
H A DNdefRecord.java69 * The binary representation of an NDEF Record includes additional flags to
537 * record flags MB and ME do not make sense outside of the context of
540 * the MB and ME flags, and otherwise following the rules of
608 * a record outside of the context of a message: the MB and ME flags
611 * always setting the MB and ME flags (in other words, assume this
739 * @param ignoreMbMe ignore MB and ME flags, and read only 1 complete record
892 * Uses specified MB and ME flags.<p>
899 byte flags = (byte)((mb ? FLAG_MB : 0) | (me ? FLAG_ME : 0) |
901 buffer.put(flags);
939 public void writeToParcel(Parcel dest, int flags) { argument
[all...]
/frameworks/base/core/java/android/os/
H A DPowerManager.java75 * In addition, you can add two more flags, which affect behavior of the screen only.
76 * <i>These flags have no effect when combined with a {@link #PARTIAL_WAKE_LOCK}.</i></p>
192 * Mask for the wake lock level component of a combined wake lock level and flags integer.
354 * Creates a new wake lock with the specified level and flags.
356 * The {@code levelAndFlags} parameter specifies a wake lock level and optional flags
364 * The wake lock flags are: {@link #ACQUIRE_CAUSES_WAKEUP}
365 * and {@link #ON_AFTER_RELEASE}. Multiple flags can be combined as part of the
637 WakeLock(int flags, String tag) { argument
638 mFlags = flags;
735 * Releases the wake lock with flags t
747 release(int flags) argument
[all...]
/frameworks/base/core/java/android/preference/
H A DDialogPreference.java322 * Sets the required flags on the dialog window to enable input method window to show up.
456 public void writeToParcel(Parcel dest, int flags) { argument
457 super.writeToParcel(dest, flags);
H A DVolumePreference.java194 public void writeToParcel(Parcel dest, int flags) { argument
195 super.writeToParcel(dest, flags);
/frameworks/base/core/java/android/view/
H A DAccessibilityInteractionController.java88 IAccessibilityInteractionConnectionCallback callback, int flags, int interrogatingPid,
92 message.arg1 = flags;
114 final int flags = message.arg1;
132 (flags & INCLUDE_NOT_IMPORTANT_VIEWS) != 0;
140 mPrefetcher.prefetchAccessibilityNodeInfos(root, virtualDescendantId, flags, infos);
156 int flags, int interrogatingPid, long interrogatingTid) {
159 message.arg1 = flags;
182 final int flags = message.arg1;
199 (flags & INCLUDE_NOT_IMPORTANT_VIEWS) != 0;
225 int flags, in
86 findAccessibilityNodeInfoByAccessibilityIdClientThread( long accessibilityNodeId, int interactionId, IAccessibilityInteractionConnectionCallback callback, int flags, int interrogatingPid, long interrogatingTid) argument
154 findAccessibilityNodeInfoByViewIdClientThread(long accessibilityNodeId, int viewId, int interactionId, IAccessibilityInteractionConnectionCallback callback, int flags, int interrogatingPid, long interrogatingTid) argument
223 findAccessibilityNodeInfosByTextClientThread(long accessibilityNodeId, String text, int interactionId, IAccessibilityInteractionConnectionCallback callback, int flags, int interrogatingPid, long interrogatingTid) argument
321 findFocusClientThread(long accessibilityNodeId, int focusType, int interactionId, IAccessibilityInteractionConnectionCallback callback, int flags, int interogatingPid, long interrogatingTid) argument
418 focusSearchClientThread(long accessibilityNodeId, int direction, int interactionId, IAccessibilityInteractionConnectionCallback callback, int flags, int interogatingPid, long interrogatingTid) argument
487 performAccessibilityActionClientThread(long accessibilityNodeId, int action, Bundle arguments, int interactionId, IAccessibilityInteractionConnectionCallback callback, int flags, int interogatingPid, long interrogatingTid) argument
[all...]
H A DInputEventConsistencyVerifier.java48 // Consistency verifier flags.
113 * @param flags Flags to the verifier, or 0 if none.
115 public InputEventConsistencyVerifier(Object caller, int flags) { argument
116 this(caller, flags, InputEventConsistencyVerifier.class.getSimpleName());
122 * @param flags Flags to the verifier, or 0 if none.
125 public InputEventConsistencyVerifier(Object caller, int flags, String logTag) { argument
127 this.mFlags = flags;
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityEvent.java1032 public void writeToParcel(Parcel parcel, int flags) { argument
1040 writeAccessibilityRecordToParcel(this, parcel, flags);
1047 writeAccessibilityRecordToParcel(record, parcel, flags);
1058 int flags) {
1070 TextUtils.writeToParcel(record.mClassName, parcel, flags);
1071 TextUtils.writeToParcel(record.mContentDescription, parcel, flags);
1072 TextUtils.writeToParcel(record.mBeforeText, parcel, flags);
1073 parcel.writeParcelable(record.mParcelableData, flags);
1057 writeAccessibilityRecordToParcel(AccessibilityRecord record, Parcel parcel, int flags) argument
/frameworks/base/core/java/android/view/inputmethod/
H A DBaseInputConnection.java303 public ExtractedText getExtractedText(ExtractedTextRequest request, int flags) { argument
311 public CharSequence getTextBeforeCursor(int length, int flags) { argument
332 if ((flags&GET_TEXT_WITH_STYLES) != 0) {
342 public CharSequence getSelectedText(int flags) { argument
357 if ((flags&GET_TEXT_WITH_STYLES) != 0) {
367 public CharSequence getTextAfterCursor(int length, int flags) { argument
390 if ((flags&GET_TEXT_WITH_STYLES) != 0) {
/frameworks/base/core/java/android/widget/
H A DExpandableListConnector.java923 public void writeToParcel(Parcel dest, int flags) { argument
H A DTimePicker.java334 public void writeToParcel(Parcel dest, int flags) { argument
335 super.writeToParcel(dest, flags);
474 int flags = DateUtils.FORMAT_SHOW_TIME;
476 flags |= DateUtils.FORMAT_24HOUR;
478 flags |= DateUtils.FORMAT_12HOUR;
483 mTempCalendar.getTimeInMillis(), flags);
/frameworks/base/core/java/com/android/internal/view/
H A DInputConnectionWrapper.java183 public CharSequence getTextAfterCursor(int length, int flags) { argument
187 mIInputContext.getTextAfterCursor(length, flags, callback.mSeq, callback);
201 public CharSequence getTextBeforeCursor(int length, int flags) { argument
205 mIInputContext.getTextBeforeCursor(length, flags, callback.mSeq, callback);
219 public CharSequence getSelectedText(int flags) { argument
223 mIInputContext.getSelectedText(flags, callback.mSeq, callback);
255 public ExtractedText getExtractedText(ExtractedTextRequest request, int flags) { argument
259 mIInputContext.getExtractedText(request, flags, callback.mSeq, callback);

Completed in 552 milliseconds

<<11121314151617181920>>