Searched refs:mode (Results 151 - 175 of 1008) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dpitch_fr.h65 #include "mode.h"
128 enum Mode mode, /* i : codec mode */
H A Dsid_sync.cpp74 #include "mode.h"
439 mode = codec mode (enum Mode)
457 This function performs SID frame synchronization to ensure that the mode
458 only switches to a neighbouring mode.
496 enum Mode mode,
502 if (mode == MRDTX)
495 sid_sync(void *state, enum Mode mode, enum TXFrameType *tx_frame_type) argument
/frameworks/base/core/java/android/view/
H A DWindowCallbackWrapper.java147 public void onActionModeStarted(ActionMode mode) { argument
148 mWrapped.onActionModeStarted(mode);
152 public void onActionModeFinished(ActionMode mode) { argument
153 mWrapped.onActionModeFinished(mode);
H A DRemoteAnimationTarget.java69 public final @Mode int mode; field in class:RemoteAnimationTarget
130 public RemoteAnimationTarget(int taskId, int mode, SurfaceControl leash, boolean isTranslucent, argument
133 this.mode = mode;
148 mode = in.readInt();
168 dest.writeInt(mode);
181 pw.print(prefix); pw.print("mode="); pw.print(mode);
197 proto.write(MODE, mode);
/frameworks/base/services/core/java/com/android/server/lights/
H A DLight.java38 * Low-persistence light mode.
45 public abstract void setFlashing(int color, int mode, int onMS, int offMS); argument
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DFramebufferBlendActivity.java87 private void drawBlendedBitmap(Canvas canvas, PorterDuff.Mode mode) { argument
93 mPaint.setXfermode(new PorterDuffXfermode(mode));
99 private void drawBlendedBitmapInverse(Canvas canvas, PorterDuff.Mode mode) { argument
104 mPaint.setXfermode(new PorterDuffXfermode(mode));
/frameworks/native/include/binder/
H A DIShellCallback.h33 const String16& mode) = 0;
/frameworks/native/libs/binder/include/binder/
H A DIShellCallback.h33 const String16& mode) = 0;
/frameworks/base/core/java/android/content/
H A DContentProvider.java365 String callingPkg, Uri uri, String mode, ICancellationSignal cancellationSignal,
369 enforceFilePermission(callingPkg, uri, mode, callerToken);
373 uri, mode, CancellationSignal.fromTransport(cancellationSignal));
381 String callingPkg, Uri uri, String mode, ICancellationSignal cancellationSignal)
385 enforceFilePermission(callingPkg, uri, mode, null);
389 uri, mode, CancellationSignal.fromTransport(cancellationSignal));
484 private void enforceFilePermission(String callingPkg, Uri uri, String mode, argument
486 if (mode != null && mode.indexOf('w') != -1) {
501 final int mode
364 openFile( String callingPkg, Uri uri, String mode, ICancellationSignal cancellationSignal, IBinder callerToken) argument
380 openAssetFile( String callingPkg, Uri uri, String mode, ICancellationSignal cancellationSignal) argument
1415 openFile(@onNull Uri uri, @NonNull String mode) argument
1485 openFile(@onNull Uri uri, @NonNull String mode, @Nullable CancellationSignal signal) argument
1541 openAssetFile(@onNull Uri uri, @NonNull String mode) argument
1604 openAssetFile(@onNull Uri uri, @NonNull String mode, @Nullable CancellationSignal signal) argument
1623 openFileHelper(@onNull Uri uri, @NonNull String mode) argument
[all...]
/frameworks/native/libs/vr/libvrsensor/
H A Dpose_client.cpp110 // different mode.
121 // Sets the data mode for the pose service.
122 int SetMode(DvrPoseMode mode) { argument
125 trans.Send<int>(DVR_POSE_SET_MODE, &mode, sizeof(mode), nullptr, 0);
131 // Gets the data mode for the pose service.
133 int mode; local
136 trans.Send<int>(DVR_POSE_GET_MODE, nullptr, 0, &mode, sizeof(mode));
140 *out_mode = DvrPoseMode(mode);
347 dvrPoseClientModeSet(DvrPoseClient* client, DvrPoseMode mode) argument
351 dvrPoseClientModeGet(DvrPoseClient* client, DvrPoseMode* mode) argument
[all...]
/frameworks/av/include/media/
H A DMediaTrack.h82 void setSeekTo(int64_t time_us, SeekMode mode = SEEK_CLOSEST_SYNC);
84 bool getSeekTo(int64_t *time_us, SeekMode *mode) const;
/frameworks/av/media/libmediaextractor/include/media/
H A DMediaTrack.h82 void setSeekTo(int64_t time_us, SeekMode mode = SEEK_CLOSEST_SYNC);
84 bool getSeekTo(int64_t *time_us, SeekMode *mode) const;
/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
H A Ddec_amr.h70 #include "mode.h"
178 Word16 Decoder_amr_reset(Decoder_amrState *st, enum Mode mode);
187 enum Mode mode, /* i : AMR mode */
/frameworks/av/media/libstagefright/omx/include/media/stagefright/omx/
H A DOMXUtils.h66 inline static const char *asString(IOMX::PortMode mode, const char *def = "??") { argument
68 switch (mode) {
/frameworks/av/services/audiopolicy/
H A Daudio_policy.conf59 # mode <gain modes supported> # e.g. AUDIO_GAIN_MODE_CHANNELS
60 # channel_mask <controlled channels> # needed if mode AUDIO_GAIN_MODE_CHANNELS
65 # min_ramp_ms <min duration in ms> # needed if mode AUDIO_GAIN_MODE_RAMP
66 # max_ramp_ms <max duration ms> # needed if mode AUDIO_GAIN_MODE_RAMP
96 mode AUDIO_GAIN_MODE_JOINT
/frameworks/base/core/java/android/os/
H A DPowerSaveState.java21 * 1. Whether battery saver mode is enabled
22 * 2. Specific parameters to use in battery saver mode(i.e. screen brightness, gps mode)
86 public Builder setGpsMode(int mode) { argument
87 mGpsMode = mode;
/frameworks/base/core/java/com/android/internal/backup/
H A DIObbBackupService.aidl43 long fileSize, int type, in String path, long mode, long mtime,
/frameworks/base/core/jni/android/graphics/
H A DColorFilter.cpp42 SkBlendMode mode = static_cast<SkBlendMode>(modeHandle); local
43 return reinterpret_cast<jlong>(SkColorFilter::MakeModeFilter(srcColor, mode).release());
/frameworks/base/core/proto/android/view/
H A Dremote_animation_target.proto34 optional int32 mode = 2;
/frameworks/base/libs/androidfw/include/androidfw/
H A DAsset.h160 static Asset* createFromFile(const char* fileName, AccessMode mode);
166 AccessMode mode);
176 AccessMode mode);
190 size_t uncompressedLength, AccessMode mode);
198 static Asset* createFromUncompressedMap(FileMap* dataMap, AccessMode mode);
201 AccessMode mode);
210 size_t uncompressedLen, AccessMode mode);
213 size_t uncompressedLen, AccessMode mode);
/frameworks/base/libs/hwui/
H A DGlLayer.cpp35 sk_sp<SkColorFilter> colorFilter, int alpha, SkBlendMode mode, bool blend)
36 : Layer(renderState, Api::OpenGL, colorFilter, alpha, mode)
34 GlLayer(RenderState& renderState, uint32_t layerWidth, uint32_t layerHeight, sk_sp<SkColorFilter> colorFilter, int alpha, SkBlendMode mode, bool blend) argument
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
H A DKeyguardSecurityContainerTest.java49 for (KeyguardSecurityModel.SecurityMode mode : modes) {
50 final int resId = keyguardSecurityContainer.getLayoutIdFor(mode);
/frameworks/layoutlib/bridge/src/android/view/
H A DWindowCallback.java136 public void onActionModeStarted(ActionMode mode) { argument
141 public void onActionModeFinished(ActionMode mode) { argument
/frameworks/native/libs/vr/libvrsensor/include/dvr/
H A Dpose_client.h122 // frozen or dvrPoseClientModeSet() is called with a different mode. The timestamp is
130 // Sets the pose service mode.
132 // @param mode The requested pose mode.
134 int dvrPoseClientModeSet(DvrPoseClient* client, DvrPoseMode mode);
136 // Gets the pose service mode.
138 // @param mode Return value for the current pose mode.
140 int dvrPoseClientModeGet(DvrPoseClient* client, DvrPoseMode* mode);
/frameworks/support/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/content/
H A DSharingSupportProvider.java75 public ParcelFileDescriptor openFile(Uri uri, String mode) { argument
77 if (mode.equals("r") &&

Completed in 1239 milliseconds

1234567891011>>