Searched defs:mode (Results 201 - 225 of 309) sorted by relevance

1234567891011>>

/frameworks/av/media/libmedia/
H A DIAudioFlinger.cpp302 virtual status_t setMode(audio_mode_t mode) argument
306 data.writeInt32(mode);
836 audio_mode_t mode = (audio_mode_t) data.readInt32(); local
837 reply->writeInt32( setMode(mode) );
/frameworks/av/media/libstagefright/
H A DAVIExtractor.cpp1174 int64_t timeUs, MediaSource::ReadOptions::SeekMode mode,
1209 if (mode == MediaSource::ReadOptions::SEEK_CLOSEST) {
1239 switch (mode) {
1172 getSampleIndexAtTime( size_t trackIndex, int64_t timeUs, MediaSource::ReadOptions::SeekMode mode, size_t *sampleIndex) const argument
H A DFLACExtractor.cpp709 ReadOptions::SeekMode mode; local
710 if ((NULL != options) && options->getSeekTo(&seekTimeUs, &mode)) {
H A DOggExtractor.cpp175 ReadOptions::SeekMode mode; local
176 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A DvoAMRWBEnc.c150 Word16 * mode, /* input : used mode */
153 Word16 * ser_size, /* output: bit rate of the used mode */
215 *ser_size = nb_of_bits[*mode];
216 codec_mode = *mode;
379 /* Note that mode may change here */
380 tx_dtx_handler(st->dtx_encSt, vad_flag, mode);
381 *ser_size = nb_of_bits[*mode];
384 if(*mode != MRDTX)
542 if(*mode
149 coder( Word16 * mode, Word16 speech16k[], Word16 prms[], Word16 * ser_size, void *spe_state, Word16 allow_dtx ) argument
1564 Word16 coding_mode = 0, nb_bits, allow_dtx, mode, reset_flag; local
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
H A DomxVCM4P10_MotionEstimationMB.c46 * Calculate SAD value for the selected MB encoding mode and update
125 /* Create predicted MB Intra4x4 mode */
180 * Update neighbouring Pred mode array which will be used for
454 * choosing the best mode
467 * function with best mode predicted values
469 * [in] pIntra4x4PredMode - Array of Intra 4x4 prediction mode for the MB.
471 * [in] pBestCost - Cost for the Best Intra 4x4 mode
488 OMX_S32 i, j, x, y, BlockX, BlockY, mode; local
533 /* Go through each mode for minim cost */
534 for (mode
1126 OMX_S32 mode; local
1387 OMX_S32 i, j, x, y, mode; local
[all...]
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp497 ReadOptions::SeekMode mode; local
498 if (options && options->getSeekTo(&seekTimeUs, &mode)
508 if (mode == ReadOptions::SEEK_CLOSEST) {
/frameworks/base/cmds/installd/
H A Dcommands.c800 void mkinnerdirs(char* path, int basepos, mode_t mode, int uid, int gid, argument
808 if (mkdir(path, mode) == 0) {
/frameworks/base/core/java/android/app/
H A DDialog.java974 * to the superclass implementation by calling super.onActionModeStarted(mode).
976 public void onActionModeStarted(ActionMode mode) { argument
977 mActionMode = mode;
984 * to the superclass implementation by calling super.onActionModeFinished(mode).
986 public void onActionModeFinished(ActionMode mode) { argument
987 if (mode == mActionMode) {
/frameworks/base/core/java/android/content/
H A DContentResolver.java482 * @param mode May be "w", "wa", "rw", or "rwt".
487 public final OutputStream openOutputStream(Uri uri, String mode) argument
489 AssetFileDescriptor fd = openAssetFileDescriptor(uri, mode);
517 * @param mode The file mode to use, as per {@link ContentProvider#openFile
522 * file exists under the URI or the mode is invalid.
526 String mode) throws FileNotFoundException {
527 AssetFileDescriptor afd = openAssetFileDescriptor(uri, mode);
582 * <p>Note that if this function is called for read-only input (mode is "r")
588 * @param mode Th
525 openFileDescriptor(Uri uri, String mode) argument
595 openAssetFileDescriptor(Uri uri, String mode) argument
822 modeToMode(Uri uri, String mode) argument
[all...]
H A DContextWrapper.java160 public SharedPreferences getSharedPreferences(String name, int mode) { argument
161 return mBase.getSharedPreferences(name, mode);
171 public FileOutputStream openFileOutput(String name, int mode) argument
173 return mBase.openFileOutput(name, mode);
217 public File getDir(String name, int mode) { argument
218 return mBase.getDir(name, mode);
222 public SQLiteDatabase openOrCreateDatabase(String name, int mode, CursorFactory factory) { argument
223 return mBase.openOrCreateDatabase(name, mode, factory);
227 public SQLiteDatabase openOrCreateDatabase(String name, int mode, CursorFactory factory, argument
229 return mBase.openOrCreateDatabase(name, mode, factor
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboard.java132 /** Keyboard mode, or zero, if none. */
178 /** The keyboard mode for this row */
179 public int mode; field in class:Keyboard.Row
207 mode = a.getResourceId(com.android.internal.R.styleable.Keyboard_Row_keyboardMode,
515 * that have a keyboard mode defined but don't match the specified mode.
518 * @param modeId keyboard mode identifier
538 * that have a keyboard mode defined but don't match the specified mode.
541 * @param modeId keyboard mode identifie
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebSettings.java96 * Default cache usage mode. If the navigation type doesn't impose any
104 * Normal cache usage mode. Use with {@link #setCacheMode}.
320 * Sets whether the WebView loads pages in overview mode. The default is
328 * Gets whether this WebView loads pages in overview mode.
330 * @return whether this WebView loads pages in overview mode
392 * unless in private browsing mode, when the value is always false.
400 * browsing mode.
982 * demand mode means that if a plugin exists that can handle the embedded
1302 * @param mode the mode t
1304 setCacheMode(int mode) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DHorizontalScrollView.java529 * drag mode.
1545 public void setOverScrollMode(int mode) { argument
1546 if (mode != OVER_SCROLL_NEVER) {
1556 super.setOverScrollMode(mode);
H A DImageView.java517 * @param scaleType The desired scaling mode.
1053 * @param mode How to apply the color. The standard mode is
1058 public final void setColorFilter(int color, PorterDuff.Mode mode) { argument
1059 setColorFilter(new PorterDuffColorFilter(color, mode));
1064 * {@link PorterDuff.Mode#SRC_ATOP} blending mode.
H A DListPopupWindow.java310 * Sets the operating mode for the soft input area.
312 * @param mode The desired mode, see
319 public void setSoftInputMode(int mode) { argument
320 mPopup.setSoftInputMode(mode);
658 public void setInputMethodMode(int mode) { argument
659 mPopup.setInputMethodMode(mode);
869 // of touch mode.
1136 * passed to the drop down in this mode; the list only looks focused.</p>
1141 * WARNING: This is a workaround for a touch mode issu
[all...]
H A DPopupWindow.java469 public void setInputMethodMode(int mode) { argument
470 mInputMethodMode = mode;
474 * Sets the operating mode for the soft input area.
476 * @param mode The desired mode, see
483 public void setSoftInputMode(int mode) { argument
484 mSoftInputMode = mode;
721 * @param widthSpec an explicit width measure spec mode, either
725 * @param heightSpec an explicit height measure spec mode, either
H A DScrollView.java561 * drag mode.
1560 public void setOverScrollMode(int mode) { argument
1561 if (mode != OVER_SCROLL_NEVER) {
1571 super.setOverScrollMode(mode);
/frameworks/base/core/jni/android/graphics/
H A DBitmapFactory.cpp164 SkImageDecoder::Mode mode = SkImageDecoder::kDecodePixels_Mode; local
179 mode = SkImageDecoder::kDecodeBounds_Mode;
241 SkImageDecoder::Mode decodeMode = mode;
261 if (willScale && mode != SkImageDecoder::kDecodeBounds_Mode) {
274 // if we're in justBounds mode, return now (skip the java bitmap)
275 if (mode == SkImageDecoder::kDecodeBounds_Mode) {
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES11.cpp466 /* void glDrawElements ( GLenum mode, GLsizei count, GLenum type, GLint offset ) */
469 (JNIEnv *_env, jobject _this, jint mode, jint count, jint type, jint offset) {
474 (GLenum)mode,
468 android_glDrawElements__IIII(JNIEnv *_env, jobject _this, jint mode, jint count, jint type, jint offset) argument
H A Dandroid_util_Process.cpp708 const jint mode = formatData[fi]; local
709 if ((mode&PROC_PARENS) != 0) {
712 const char term = (char)(mode&PROC_TERM_MASK);
720 if ((mode&PROC_PARENS) != 0) {
736 if ((mode&PROC_COMBINE) != 0) {
743 //ALOGI("Field %d: %d-%d dest=%d mode=0x%x\n", i, start, end, di, mode);
745 if ((mode&(PROC_OUT_FLOAT|PROC_OUT_LONG|PROC_OUT_STRING)) != 0) {
748 if ((mode&PROC_OUT_FLOAT) != 0 && di < NR) {
752 if ((mode
[all...]
/frameworks/base/libs/hwui/
H A DProgramCache.cpp783 void ProgramCache::generateBlend(String8& shader, const char* name, SkXfermode::Mode mode) { argument
788 shader.append(gBlendOps[mode]);
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
H A DLockPatternKeyguardView.java169 * The current mode.
174 * Keeps track of what mode the current unlock screen is (cached from most recent computation in
199 Mode mode = mMode;
204 if (mode == Mode.UnlockScreen && getUnlockMode() == UnlockMode.Unknown) {
206 mode = Mode.LockScreen;
209 updateScreen(mode, true);
276 // navigating away from unlock screen during verify mode means
770 // can only verify unlock when in pattern/password mode
822 throw new IllegalStateException("unknown unlock mode " + unlockMode);
827 private void updateScreen(Mode mode, boolea argument
[all...]
/frameworks/base/services/jni/
H A Dcom_android_server_location_GpsLocationProvider.cpp311 jint mode, jint recurrence, jint min_interval, jint preferred_accuracy, jint preferred_time)
314 return (sGpsInterface->set_position_mode(mode, recurrence, min_interval, preferred_accuracy,
310 android_location_GpsLocationProvider_set_position_mode(JNIEnv* env, jobject obj, jint mode, jint recurrence, jint min_interval, jint preferred_accuracy, jint preferred_time) argument
/frameworks/base/telephony/java/android/telephony/
H A DServiceState.java33 * <li>Network selection mode
347 * Get current network selection mode.
349 * @return true if manual mode, false if automatic mode
553 public void setCdmaEriIconMode(int mode) { argument
554 this.mCdmaEriIconMode = mode;

Completed in 2166 milliseconds

1234567891011>>