Searched refs:mode (Results 226 - 250 of 285) sorted by relevance

1234567891011>>

/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dcombined_decode.cpp27 /* Purpose : Decode a frame of MPEG4 bitstream in combined mode. */
34 /* 04/13/2000 : Rewrote this combined mode path completely */
533 uint mode = video->headerInfo.Mode[mbnum]; local
574 if (mode & INTRA_MASK) /* MODE_INTRA || MODE_INTRA_Q */
658 status = PV_GetMBvectors(video, mode);
H A Dmp4dec_lib.h283 void H263_Deblock(uint8 *rec, int width, int height, int16 *QP_store, uint8 *mode, int chr, int T);
H A Ddatapart_decode.cpp28 /* Purpose : Decode a frame of MPEG4 bitstream in datapartitioning mode. */
235 /* No skipped mode in I-packets 3/1/2001 */
240 /* there is always acdcpred in DataPart mode 04/10/01 */
265 /* No skipped mode in I-packets 3/1/2001 */
424 /* there is always acdcprediction in DataPart mode 04/10/01 */
629 uint8 mode = video->headerInfo.Mode[mbnum]; local
664 if (mode & INTRA_MASK) /* MODE_INTRA || mode == MODE_INTRA_Q */
/frameworks/base/core/jni/android/graphics/
H A DCanvas.cpp330 jint color, SkPorterDuff::Mode mode) {
331 canvas->drawColor(color, SkPorterDuff::ToXfermodeMode(mode));
341 SkCanvas::PointMode mode) {
366 canvas->drawPoints(mode, count, pts, paint);
691 SkCanvas::VertexMode mode, int vertexCount,
743 canvas->drawVertices(mode, ptCount, verts, texs, colors, NULL,
329 drawColor__II(JNIEnv* env, jobject, SkCanvas* canvas, jint color, SkPorterDuff::Mode mode) argument
339 doPoints(JNIEnv* env, jobject jcanvas, jfloatArray jptsArray, jint offset, jint count, jobject jpaint, SkCanvas::PointMode mode) argument
690 drawVertices(JNIEnv* env, jobject, SkCanvas* canvas, SkCanvas::VertexMode mode, int vertexCount, jfloatArray jverts, int vertIndex, jfloatArray jtexs, int texIndex, jintArray jcolors, int colorIndex, jshortArray jindices, int indexIndex, int indexCount, const SkPaint* paint) argument
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiStateTracker.java564 // reset the supplicant's handling of scan results to "normal" mode
641 * @param scanOnlyMode true if the new mode should be scan-only.
644 // do nothing unless scan-only mode is changing
648 if (LOCAL_LOGD) Log.v(TAG, "Scan-only mode changing to " + scanOnlyMode + " scanType=" + scanType);
1003 * If we're in scan-only mode, don't advance the state machine, and
1007 if (LOCAL_LOGD) Log.v(TAG, "Dropping event in scan-only mode");
1077 * the supplicant, switch scan mode over to passive.
1618 * @param mode
1623 public synchronized boolean setScanResultHandling(int mode) { argument
1627 return WifiNative.setScanResultHandlingCommand(mode);
1937 setPowerMode(int mode) argument
2004 setBluetoothCoexistenceMode(int mode) argument
[all...]
/frameworks/base/core/java/android/net/
H A DDownloads.java387 Context context, long downloadId, String mode)
396 return cr.openFileDescriptor(downloadUri, mode);
386 openDownload( Context context, long downloadId, String mode) argument
/frameworks/base/include/media/
H A DAudioSystem.h58 // bit rate, stereo mode, version...
64 // encoding mode for recording...
194 // set audio mode in audio hardware (see AudioSystem::audio_mode)
195 static status_t setMode(int mode);
346 static status_t setRingerMode(uint32_t mode, uint32_t mask);
/frameworks/base/libs/audioflinger/
H A DA2dpAudioInterface.cpp114 status_t A2dpAudioInterface::setMode(int mode) argument
116 return mHardwareInterface->setMode(mode);
H A DAudioPolicyService.h49 virtual status_t setRingerMode(uint32_t mode, uint32_t mask);
/frameworks/base/libs/utils/
H A DRefBase.cpp512 void RefBase::extendObjectLifetime(int32_t mode) argument
514 android_atomic_or(mode, &mRefs->mFlags);
/frameworks/base/media/java/android/media/
H A DMediaPlayer.java253 * <li>If the looping mode was being set to <var>true</var>with
256 * <li>If the looping mode was set to <var>false
843 * @param mode the power/wake mode to set
846 public void setWakeMode(Context context, int mode) { argument
857 mWakeLock = pm.newWakeLock(mode|PowerManager.ON_AFTER_RELEASE, MediaPlayer.class.getName());
/frameworks/base/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_mpeg2_stereo_proc.cpp240 int32 i_stereo = (info->mode == MPG_MD_JOINT_STEREO) &&
243 int32 ms_stereo = (info->mode == MPG_MD_JOINT_STEREO) &&
338 /* 3. now process all sfb with short blocks (3...12), all in intensity mode */
343 * for all sfb in intensity mode, but only
347 * here we clearly have more than one sfb in intensity mode,
406 sfbTemp = sfbcnt; /* from this (short) sfb on we have intensity mode */
408 /* and 13 (no short sfb in intensity mode) */
412 /* for all sfb in intensity mode, but only */
417 /* more than one sfb in intensity mode,
425 /* only sfb 12 in intensity mode, us
[all...]
H A Dpvmp3_framedecoder.cpp190 pVars->num_channels = (info->mode == MPG_MD_MONO) ? 1 : 2;
197 outputFrameSize = (info->mode == MPG_MD_MONO) ? outputFrameSize : outputFrameSize << 1;
255 * disable crc if this is the desired mode
/frameworks/policies/base/phone/com/android/internal/policy/impl/
H A DPatternUnlockScreen.java133 private void updateFooter(FooterMode mode) { argument
134 switch (mode) {
239 // stealth mode will be the same for the life of this screen
242 // vibrate mode will be the same for the life of this screen
245 // assume normal footer mode for now
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java446 public void setInputMethodMode(int mode) { argument
447 mInputMethodMode = mode;
451 * Sets the operating mode for the soft input area.
453 * @param mode The desired mode, see
460 public void setSoftInputMode(int mode) { argument
461 mSoftInputMode = mode;
579 * @param widthSpec an explicit width measure spec mode, either
583 * @param heightSpec an explicit height measure spec mode, either
H A DImageView.java420 * @param scaleType The desired scaling mode.
874 * @param mode How to apply the color. The standard mode is
879 public final void setColorFilter(int color, PorterDuff.Mode mode) { argument
880 setColorFilter(new PorterDuffColorFilter(color, mode));
885 * {@link PorterDuff.Mode#SRC_ATOP} blending mode.
/frameworks/base/media/libmedia/
H A DIAudioFlinger.cpp265 virtual status_t setMode(int mode) argument
269 data.writeInt32(mode);
619 int mode = data.readInt32(); local
620 reply->writeInt32( setMode(mode) );
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL11ExtensionPack.java126 int mode
/frameworks/base/core/jni/
H A Dandroid_util_Binder.cpp1325 jstring name, jint mode)
1340 switch (mode&0x30000000) {
1353 if (mode&0x08000000) flags |= O_CREAT;
1354 if (mode&0x04000000) flags |= O_TRUNC;
1355 if (mode&0x02000000) flags |= O_APPEND;
1358 if (mode&0x00000001) realMode |= S_IROTH;
1359 if (mode&0x00000002) realMode |= S_IWOTH;
1324 android_os_Parcel_openFileDescriptor(JNIEnv* env, jobject clazz, jstring name, jint mode) argument
/frameworks/base/core/java/android/app/
H A DActivity.java499 * preferred view mode in its persistent settings:</p>
1732 * mode ({@link #DEFAULT_KEYS_DISABLE}) will simply drop them on the
1739 * <p>Note that the mode selected here does not impact the default
1744 * @param mode The desired default key mode constant.
1753 public final void setDefaultKeyMode(int mode) { argument
1754 mDefaultKeyMode = mode;
1758 switch (mode) {
1784 * on the application compatibility mode: for
2795 * are launching uses the singleTask launch mode, i
3511 getPreferences(int mode) argument
[all...]
/frameworks/base/core/java/android/server/
H A DBluetoothService.java339 // update mode
385 // Airplane mode can prevent Bluetooth radio from being turned on.
480 int mode = msg.arg1;
482 // TODO: Switch back to the previous scan mode
557 // Update mode
974 public synchronized boolean setScanMode(int mode, int duration) { argument
980 switch (mode) {
1000 Log.w(TAG, "Requested invalid scan mode " + mode);
1053 * in the discoverable mode)
1873 scanModeToBluezString(int mode) argument
[all...]
/frameworks/base/cmds/installd/
H A Dcommands.c608 void mkinnerdirs(char* path, int basepos, mode_t mode, int uid, int gid, argument
616 if (mkdir(path, mode) == 0) {
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
H A Dsimd.h217 #define VECTOR_ATTRIBUTE(mode,vs) __attribute__((vector_size(vs)))
219 #define VECTOR_ATTRIBUTE(mode,vs)
/frameworks/base/opengl/tools/glgen/specs/gles11/
H A DGLES11Ext.spec3 void glBlendEquationOES ( GLenum mode )
/frameworks/base/test-runner/src/android/test/
H A DTestRunner.java266 public void setPerformanceMode(int mode) { argument
267 mMode = mode;
305 //Need a way to mark a test to be run in profiling mode or not.
367 //Need a way to mark a test to be run in profiling mode or not.

Completed in 523 milliseconds

1234567891011>>