Searched refs:flags (Results 326 - 350 of 889) sorted by path

<<11121314151617181920>>

/frameworks/base/core/java/android/os/
H A DResultReceiver.java106 public void writeToParcel(Parcel out, int flags) { argument
H A DServiceManagerNative.java52 public boolean onTransact(int code, Parcel data, Parcel reply, int flags) argument
H A DStrictMode.java452 * corresponding detect flags are set.
1639 violations.get(i).writeToParcel(p, 0 /* unused flags? */);
2120 public void writeToParcel(Parcel dest, int flags) { argument
2121 crashInfo.writeToParcel(dest, flags);
H A DUserHandle.java199 public void writeToParcel(Parcel out, int flags) { argument
H A DUserManager.java167 * @param flags flags that identify the type of user and other properties.
173 public UserInfo createUser(String name, int flags) { argument
175 return mService.createUser(name, flags);
H A DWorkSource.java315 public void writeToParcel(Parcel dest, int flags) { argument
/frameworks/base/core/java/android/os/storage/
H A DIMountService.java840 int flags) throws RemoteException {
1158 return super.onTransact(code, data, reply, flags);
839 onTransact(int code, Parcel data, Parcel reply, int flags) argument
H A DIMountServiceListener.java61 public boolean onTransact(int code, Parcel data, Parcel reply, int flags) argument
89 return super.onTransact(code, data, reply, flags);
H A DIMountShutdownObserver.java60 public boolean onTransact(int code, Parcel data, Parcel reply, int flags) argument
76 return super.onTransact(code, data, reply, flags);
H A DIObbActionListener.java61 public boolean onTransact(int code, Parcel data, Parcel reply, int flags) argument
81 return super.onTransact(code, data, reply, flags);
H A DStorageVolume.java241 public void writeToParcel(Parcel parcel, int flags) { argument
251 parcel.writeParcelable(mOwner, flags);
/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 DEditTextPreference.java213 public void writeToParcel(Parcel dest, int flags) { argument
214 super.writeToParcel(dest, flags);
H A DListPreference.java316 public void writeToParcel(Parcel dest, int flags) { argument
317 super.writeToParcel(dest, flags);
H A DMultiCheckPreference.java306 public void writeToParcel(Parcel dest, int flags) { argument
307 super.writeToParcel(dest, flags);
H A DMultiSelectListPreference.java259 public void writeToParcel(Parcel dest, int flags) { argument
260 super.writeToParcel(dest, flags);
H A DPreferenceActivity.java451 public void writeToParcel(Parcel dest, int flags) { argument
454 TextUtils.writeToParcel(title, dest, flags);
456 TextUtils.writeToParcel(summary, dest, flags);
458 TextUtils.writeToParcel(breadCrumbTitle, dest, flags);
460 TextUtils.writeToParcel(breadCrumbShortTitle, dest, flags);
466 intent.writeToParcel(dest, flags);
H A DPreferenceScreen.java263 public void writeToParcel(Parcel dest, int flags) { argument
264 super.writeToParcel(dest, flags);
H A DSeekBarPreference.java223 public void writeToParcel(Parcel dest, int flags) { argument
224 super.writeToParcel(dest, flags);
H A DTwoStatePreference.java280 public void writeToParcel(Parcel dest, int flags) { argument
281 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/server/search/
H A DSearchables.java360 return (res.activityInfo.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0;
405 private List<ResolveInfo> queryIntentActivities(Intent intent, int flags) { argument
411 flags, mUserId);
/frameworks/base/core/java/android/service/dreams/
H A DDreamService.java628 lp.flags |= ( WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN
704 return mWindow == null ? defaultValue : (mWindow.getAttributes().flags & flag) != 0;
707 private void applyWindowFlags(int flags, int mask) { argument
710 lp.flags = applyFlags(lp.flags, flags, mask);
721 private void applySystemUiVisibilityFlags(int flags, int mask) { argument
724 v.setSystemUiVisibility(applyFlags(v.getSystemUiVisibility(), flags, mask));
728 private int applyFlags(int oldFlags, int flags, int mask) { argument
729 return (oldFlags&~mask) | (flags
[all...]
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java597 mLayout.flags = mWindowFlags
/frameworks/base/core/java/android/speech/tts/
H A DTtsEngines.java141 return appInfo != null && (appInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0;

Completed in 122 milliseconds

<<11121314151617181920>>