Searched refs:mode (Results 276 - 300 of 752) sorted by relevance

<<11121314151617181920>>

/frameworks/av/media/libstagefright/foundation/
H A DANetworkSession.cpp105 void setMode(Mode mode);
231 void ANetworkSession::Session::setMode(Mode mode) { argument
232 mMode = mode;
963 Mode mode,
979 (mode == kModeCreateUDPSession) ? SOCK_DGRAM : SOCK_STREAM,
987 if (mode == kModeCreateRTSPServer
988 || mode == kModeCreateTCPDatagramSessionPassive) {
998 if (mode == kModeCreateUDPSession) {
1014 } else if (mode == kModeCreateTCPDatagramSessionActive) {
1042 if (mode
962 createClientOrServer( Mode mode, const struct in_addr *localAddr, unsigned port, const char *remoteHost, unsigned remotePort, const sp<AMessage> &notify, int32_t *sessionID) argument
[all...]
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardSecurityViewFlipper.java243 final int mode;
247 mode = MeasureSpec.AT_MOST;
251 mode = MeasureSpec.EXACTLY;
255 mode = MeasureSpec.EXACTLY;
259 return MeasureSpec.makeMeasureSpec(size, mode);
/frameworks/support/v4/java/android/support/v4/view/
H A DViewCompat.java138 * Live region mode specifying that accessibility services should not
140 * region mode for most views.
147 * Live region mode specifying that accessibility services should announce
155 * Live region mode specifying that accessibility services should interrupt
179 * is useful to apply a specific color filter and/or blending mode and/or
204 * blending mode and/or translucency to a view and all its children.</p>
367 void setOverScrollMode(View v, int mode); argument
380 void setImportantForAccessibility(View view, int mode); argument
399 void setAccessibilityLiveRegion(View view, int mode); argument
456 void setBackgroundTintMode(View view, PorterDuff.Mode mode); argument
502 setOverScrollMode(View v, int mode) argument
548 setImportantForAccessibility(View view, int mode) argument
628 setAccessibilityLiveRegion(View view, int mode) argument
954 setBackgroundTintMode(View view, PorterDuff.Mode mode) argument
1135 setOverScrollMode(View v, int mode) argument
1426 setImportantForAccessibility(View view, int mode) argument
1556 setAccessibilityLiveRegion(View view, int mode) argument
1561 setImportantForAccessibility(View view, int mode) argument
1688 setBackgroundTintMode(View view, PorterDuff.Mode mode) argument
2102 setImportantForAccessibility(View view, @ImportantForAccessibility int mode) argument
2448 setAccessibilityLiveRegion(View view, @AccessibilityLiveRegion int mode) argument
3053 setBackgroundTintMode(View view, PorterDuff.Mode mode) argument
[all...]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/
H A DDirectoryFragment.java408 * Updates the layout after the view mode switches.
409 * @param mode The new view mode.
411 private void updateLayout(@ViewMode int mode) { argument
412 mColumnCount = calculateColumnCount(mode);
417 int pad = getDirectoryPadding(mode);
421 mIconHelper.setViewMode(mode);
424 private int calculateColumnCount(@ViewMode int mode) { argument
425 if (mode == MODE_LIST) {
426 // List mode i
442 getDirectoryPadding(@iewMode int mode) argument
560 onDestroyActionMode(ActionMode mode) argument
584 onCreateActionMode(ActionMode mode, Menu menu) argument
612 onPrepareActionMode(ActionMode mode, Menu menu) argument
645 onActionItemClicked(ActionMode mode, MenuItem item) argument
870 transferDocuments(final Selection selected, final @OpType int mode) argument
[all...]
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DLegacyRequestMapper.java223 // control.aeMode, flash.mode
315 // control.sceneMode, control.mode
317 // TODO: Map FACE_PRIORITY scene mode to face detection.
333 Log.w(TAG, "Skipping unknown requested scene mode: " + sceneMode);
342 Log.w(TAG, "Control mode " + controlMode +
361 Log.w(TAG, "Skipping unknown requested effect mode: " + effectMode);
444 // noiseReduction.mode
446 int mode = ParamsUtils.getOrDefault(request,
450 if (mode != NOISE_REDUCTION_MODE_FAST &&
451 mode !
611 convertAeAntiBandingModeToLegacy(int mode) argument
638 convertAwbModeToLegacy(int mode) argument
[all...]
/frameworks/base/core/java/android/provider/
H A DDocumentsProvider.java485 * document. You may return a pipe or socket pair if the mode is exclusively
493 * @param mode the mode to open with, such as 'r', 'w', or 'rw'.
503 String documentId, String mode, CancellationSignal signal) throws FileNotFoundException;
880 public final ParcelFileDescriptor openFile(Uri uri, String mode) throws FileNotFoundException { argument
882 return openDocument(getDocumentId(uri), mode, null);
891 public final ParcelFileDescriptor openFile(Uri uri, String mode, CancellationSignal signal) argument
894 return openDocument(getDocumentId(uri), mode, signal);
904 public final AssetFileDescriptor openAssetFile(Uri uri, String mode) argument
907 final ParcelFileDescriptor fd = openDocument(getDocumentId(uri), mode, nul
502 openDocument( String documentId, String mode, CancellationSignal signal) argument
918 openAssetFile(Uri uri, String mode, CancellationSignal signal) argument
[all...]
/frameworks/native/opengl/libagl/
H A Dstate.cpp254 void glCullFace(GLenum mode) argument
257 switch (mode) {
265 c->cull.cullFace = mode;
268 void glFrontFace(GLenum mode) argument
271 switch (mode) {
279 c->cull.frontFace = mode;
282 void glHint(GLenum target, GLenum mode) argument
292 GGL_POINT_SMOOTH_NICE, mode==GL_NICEST);
295 c->perspective = (mode == GL_NICEST) ? 1 : 0;
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DAppCompatSpinner.java113 * mode of displaying choices. <code>mode</code> may be one of
118 * @param mode Constant describing how the user will select choices from the spinner.
122 public AppCompatSpinner(Context context, int mode) { argument
123 this(context, null, R.attr.spinnerStyle, mode);
154 * and default style. <code>mode</code> may be one of {@link #MODE_DIALOG} or
163 * @param mode Constant describing how the user will select choices from the spinner.
167 public AppCompatSpinner(Context context, AttributeSet attrs, int defStyleAttr, int mode) { argument
168 this(context, attrs, defStyleAttr, mode, null);
174 * attribute set, default styles, popup mode (on
195 AppCompatSpinner(Context context, AttributeSet attrs, int defStyleAttr, int mode, Resources.Theme popupTheme) argument
[all...]
/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES10.spec21 void glCullFace ( GLenum mode )
29 void glDrawArrays ( GLenum mode, GLint first, GLsizei count )
30 void glDrawElements ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices )
39 void glFrontFace ( GLenum mode )
46 void glHint ( GLenum target, GLenum mode )
65 void glMatrixMode ( GLenum mode )
90 void glShadeModel ( GLenum mode )
H A DGLES20.spec9 void glBlendEquation ( GLenum mode )
28 void glCullFace ( GLenum mode )
41 void glDrawArrays ( GLenum mode, GLint first, GLsizei count )
42 void glDrawElements ( GLenum mode, GLsizei count, GLenum type, GLint offset )
43 void glDrawElements ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices )
50 void glFrontFace ( GLenum mode )
82 void glHint ( GLenum target, GLenum mode )
/frameworks/base/core/java/android/transition/
H A DVisibility.java94 int mode = a.getInt(R.styleable.VisibilityTransition_transitionVisibilityMode, 0);
96 if (mode != 0) {
97 setMode(mode);
112 * on <code>mode</code>.
114 * @param mode The behavior supported by this transition, a combination of
118 public void setMode(@VisibilityMode int mode) { argument
119 if ((mode & ~(MODE_IN | MODE_OUT)) != 0) {
122 mMode = mode;
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
H A DStaticMetadata.java359 // Assume that if we have an AF mode which doesn't ignore AF trigger, we have a focuser
361 loop: for (int mode : availableAfModes) {
362 switch (mode) {
487 for (int mode : modes) {
488 checkTrueForKey(key, "mode value " + mode + " is out if range",
489 mode >= CameraMetadata.CONTROL_AE_ANTIBANDING_MODE_OFF ||
490 mode <= CameraMetadata.CONTROL_AE_ANTIBANDING_MODE_AUTO);
491 if (mode == CameraMetadata.CONTROL_AE_ANTIBANDING_MODE_AUTO) {
493 } else if (mode
[all...]
/frameworks/base/core/jni/
H A Dandroid_util_Process.cpp877 jint mode = formatData[fi]; local
878 if ((mode&PROC_PARENS) != 0) {
880 } else if ((mode&PROC_QUOTES) != 0) {
884 mode &= ~PROC_QUOTES;
887 const char term = (char)(mode&PROC_TERM_MASK);
898 if ((mode&PROC_PARENS) != 0) {
904 } else if ((mode&PROC_QUOTES) != 0) {
920 if ((mode&PROC_COMBINE) != 0) {
927 //ALOGI("Field %" PRId32 ": %" PRId32 "-%" PRId32 " dest=%" PRId32 " mode=0x%" PRIx32 "\n", i, start, end, di, mode);
[all...]
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/common/
H A DFwdLockGlue.c46 * @param[in] mode The access mode to use for the directories being created.
50 static int FwdLockGlue_CreateDirectories(const char *path, mode_t mode) { argument
61 if (mkdir(partialPath, mode) != 0 && errno != EEXIST) {
/frameworks/av/media/libstagefright/
H A DJPEGSource.cpp115 ReadOptions::SeekMode mode; local
116 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) {
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dg_pitch.cpp81 #include "mode.h"
115 mode = AMR mode (enum Mode)
164 enum Mode mode, // i : AMR mode
266 if (sub(mode, MR122) == 0)
299 enum Mode mode, /* i : AMR mode */
457 if (mode == MR122)
298 G_pitch( enum Mode mode, Word16 xn[], Word16 y1[], Word16 g_coeff[], Word16 L_subfr, Flag *pOverflow ) argument
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/include/
H A Dmp4dec_api.h150 OSCL_IMPORT_REF Bool PVInitVideoDecoder(VideoDecControls *decCtrl, uint8 *volbuf[], int32 *volbuf_size, int nLayers, int width, int height, MP4DecodingMode mode);
163 OSCL_IMPORT_REF void PVSetPostProcType(VideoDecControls *decCtrl, int mode);
/frameworks/av/services/audiopolicy/engineconfigurable/src/
H A DEngine.cpp201 status_t Engine::setPhoneState(audio_mode_t mode) argument
203 return mPolicyParameterMgr->setPhoneState(mode);
/frameworks/base/core/java/android/content/
H A DIContentProvider.java51 String callingPkg, Uri url, String mode, ICancellationSignal signal,
55 String callingPkg, Uri url, String mode, ICancellationSignal signal)
50 openFile( String callingPkg, Uri url, String mode, ICancellationSignal signal, IBinder callerToken) argument
54 openAssetFile( String callingPkg, Uri url, String mode, ICancellationSignal signal) argument
/frameworks/base/core/java/android/hardware/input/
H A DIInputManager.aidl45 boolean injectInputEvent(in InputEvent ev, int mode);
73 // Queries whether the device is currently in tablet mode
75 // Registers a tablet mode change listener
/frameworks/base/core/java/com/android/server/backup/
H A DSystemBackupAgent.java138 int type, String domain, String path, long mode, long mtime)
161 FullBackup.restoreFile(data, size, type, mode, mtime, outFile);
137 onRestoreFile(ParcelFileDescriptor data, long size, int type, String domain, String path, long mode, long mtime) argument
/frameworks/base/core/tests/benchmarks/
H A DAndroid.mk1 # -*- mode: makefile -*-
/frameworks/base/libs/hwui/
H A DClipArea.cpp45 ALOGD("mode %d" RECT_STRING, mode, RECT_ARGS(rect));
262 * Rectangle mode
266 // Entering rectangle mode discards any
297 * RectangleList mode implementation
301 // Is is only legal to enter rectangle list mode from
302 // rectangle mode, since rectangle list mode cannot represent
319 * Region mode implementation
409 int recordedRectCount = (scb->mode
[all...]
H A DGlopBuilder.h71 float alpha, SkXfermode::Mode mode, Blend::ModeOrderSwap modeUsage);
75 // Similarly setFillLayer normally forces its own wrap & filter mode
114 SkXfermode::Mode mode, Blend::ModeOrderSwap modeUsage,
/frameworks/base/media/jni/
H A Dandroid_media_MediaCodec.h83 CryptoPlugin::Mode mode,
116 void setVideoScalingMode(int mode);

Completed in 4489 milliseconds

<<11121314151617181920>>