/frameworks/base/tools/layoutlib/bridge/src/android/view/ |
H A D | IWindowManagerImpl.java | 525 public void lockNow(Bundle options) { argument
|
/frameworks/av/media/libstagefright/ |
H A D | CameraSource.cpp | 1014 MediaBuffer **buffer, const ReadOptions *options) { 1021 if (options && options->getSeekTo(&seekTimeUs, &mode)) { 1013 read( MediaBuffer **buffer, const ReadOptions *options) argument
|
H A D | MPEG4Extractor.cpp | 82 virtual status_t read(MediaBuffer **buffer, const ReadOptions *options = NULL); 84 virtual status_t fragmentedRead(MediaBuffer **buffer, const ReadOptions *options = NULL); 4366 MediaBuffer **out, const ReadOptions *options) { 4371 if (options != nullptr && options->getNonBlocking() && !mGroup->has_buffers()) { 4377 return fragmentedRead(out, options); 4386 if (options && options->getSeekTo(&seekTimeUs, &mode)) { 4676 MediaBuffer **out, const ReadOptions *options) { 4688 if (options 4365 read( MediaBuffer **out, const ReadOptions *options) argument 4675 fragmentedRead( MediaBuffer **out, const ReadOptions *options) argument [all...] |
/frameworks/base/core/java/android/app/ |
H A D | ActivityOptions.java | 46 * Helper class for building an options Bundle that can be used with 67 * The package name that created the options. 261 * supply these options as the options Bundle when starting an activity. 284 * supply these options as the options Bundle when starting an activity. 307 * supply these options as the options Bundle when running an in-place animation. 390 * supply these options as the options Bundl 1012 abort(ActivityOptions options) argument [all...] |
H A D | ApplicationThreadNative.java | 645 ActivityOptions options = new ActivityOptions(data.readBundle()); 646 scheduleOnNewActivityOptions(token, options); 1408 public void scheduleOnNewActivityOptions(IBinder token, ActivityOptions options) argument 1413 data.writeBundle(options == null ? null : options.toBundle());
|
H A D | ActivityManager.java | 2074 * with a null options argument. 2095 * @param options Additional options for the operation, either null or 2099 public void moveTaskToFront(int taskId, int flags, Bundle options) { argument 2101 ActivityManagerNative.getDefault().moveTaskToFront(taskId, flags, options); 3758 * @param options Optional launch options. 3762 public void startActivity(Context context, Intent intent, Bundle options) { argument 3765 thread.getApplicationThread(), mAppTaskImpl, intent, options);
|
H A D | IApplicationThread.java | 151 void scheduleOnNewActivityOptions(IBinder token, ActivityOptions options) argument
|
/frameworks/base/tools/aapt/ |
H A D | ResourceTable.h | 42 int options = XML_COMPILE_STANDARD_RESOURCE); 50 int options = XML_COMPILE_STANDARD_RESOURCE); 58 int options = XML_COMPILE_STANDARD_RESOURCE);
|
H A D | ResourceTable.cpp | 47 int options) 54 return compileXmlFile(bundle, assets, resourceName, root, target, table, options); 63 int options) 70 return compileXmlFile(bundle, assets, resourceName, root, outTarget, table, options); 79 int options) 81 if ((options&XML_COMPILE_STRIP_WHITESPACE) != 0) { 83 } else if ((options&XML_COMPILE_COMPACT_WHITESPACE) != 0) { 87 if ((options&XML_COMPILE_UTF8) != 0) { 96 if ((options&XML_COMPILE_ASSIGN_ATTRIBUTE_IDS) != 0) { 103 if ((options 42 compileXmlFile(const Bundle* bundle, const sp<AaptAssets>& assets, const String16& resourceName, const sp<AaptFile>& target, ResourceTable* table, int options) argument 57 compileXmlFile(const Bundle* bundle, const sp<AaptAssets>& assets, const String16& resourceName, const sp<AaptFile>& target, const sp<AaptFile>& outTarget, ResourceTable* table, int options) argument 73 compileXmlFile(const Bundle* bundle, const sp<AaptAssets>& assets, const String16& resourceName, const sp<XMLNode>& root, const sp<AaptFile>& target, ResourceTable* table, int options) argument [all...] |
/frameworks/base/cmds/am/src/com/android/commands/am/ |
H A D | Am.java | 131 "usage: am [subcommand] [options]\n" + 632 ActivityOptions options = null; 634 options = ActivityOptions.makeBasic(); 635 options.setLaunchStackId(mStackId); 640 options != null ? options.toBundle() : null, mUserId); 645 options != null ? options.toBundle() : null, mUserId);
|
/frameworks/base/core/java/com/android/internal/util/ |
H A D | XmlUtils.java | 62 convertValueToList(CharSequence value, String[] options, int defaultValue) argument 65 for (int i = 0; i < options.length; i++) { 66 if (value.equals(options[i]))
|
/frameworks/base/services/core/java/com/android/server/am/ |
H A D | ActivityStackSupervisor.java | 1426 ActivityRecord resultRecord, ActivityStack resultStack, ActivityOptions options) { 1480 if (options != null && options.getLaunchTaskId() != -1) { 1487 + options.getLaunchTaskId(); 1875 void findTaskToMoveToFrontLocked(TaskRecord task, int flags, ActivityOptions options, argument 1891 if (task.isResizeable() && options != null) { 1892 int stackId = options.getLaunchStackId(); 1893 if (canUseActivityOptionsLaunchBounds(options, stackId)) { 1894 final Rect bounds = TaskRecord.validateBounds(options.getLaunchBounds()); 1921 task.stack.moveTaskToFrontLocked(task, false /* noAnimation */, options, 1423 checkStartAnyActivityPermission(Intent intent, ActivityInfo aInfo, String resultWho, int requestCode, int callingPid, int callingUid, String callingPackage, boolean ignoreTargetSecurity, ProcessRecord callerApp, ActivityRecord resultRecord, ActivityStack resultStack, ActivityOptions options) argument 1931 canUseActivityOptionsLaunchBounds(ActivityOptions options, int launchStackId) argument [all...] |
/frameworks/base/core/java/com/android/internal/app/ |
H A D | ChooserActivity.java | 711 public boolean start(Activity activity, Bundle options) { argument 716 public boolean startAsCaller(Activity activity, Bundle options, int userId) { argument 735 activity.startActivityAsCaller(intent, options, ignoreTargetSecurity, userId); 740 public boolean startAsUser(Activity activity, Bundle options, UserHandle user) { argument
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
H A D | StatusBarKeyguardViewManager.java | 116 public void show(Bundle options) { argument
|
/frameworks/base/services/core/java/com/android/server/accounts/ |
H A D | AccountManagerService.java | 2675 final Bundle options = (optionsIn == null) ? new Bundle() : optionsIn; 2676 options.putInt(AccountManager.KEY_CALLER_UID, uid); 2677 options.putInt(AccountManager.KEY_CALLER_PID, pid); 2691 options); 2759 final Bundle options = (optionsIn == null) ? new Bundle() : optionsIn; 2760 options.putInt(AccountManager.KEY_CALLER_UID, uid); 2761 options.putInt(AccountManager.KEY_CALLER_PID, pid); 2774 options); 2848 final Bundle options = (optionsIn == null) ? new Bundle() : optionsIn; 2849 options 3152 confirmCredentialsAsUser( IAccountManagerResponse response, final Account account, final Bundle options, final boolean expectActivityLaunch, int userId) argument [all...] |
/frameworks/compile/mclinker/lib/Target/ARM/ |
H A D | ARMLDBackend.cpp | 692 if (config().options().hasNow()) 868 switch (config().options().getStripSymbolMode()) {
|
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
H A D | HexagonLDBackend.cpp | 379 if (config().options().hasNow()) 385 if (config().options().hasNow())
|
/frameworks/support/fragment/tests/java/android/support/v4/app/ |
H A D | FragmentLifecycleTest.java | 634 Fragment fragment, Intent intent, int requestCode, @Nullable Bundle options) { 635 mActivity.startActivityFromFragment(fragment, intent, requestCode, options); 633 onStartActivityFromFragment( Fragment fragment, Intent intent, int requestCode, @Nullable Bundle options) argument
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/ |
H A D | BridgeContext.java | 1640 String receiverPermission, int appOp, Bundle options, BroadcastReceiver resultReceiver, 1665 public void sendStickyBroadcastAsUser(Intent intent, UserHandle user, Bundle options) { argument 1720 Bundle options) throws IntentSender.SendIntentException { 1639 sendOrderedBroadcastAsUser(Intent intent, UserHandle user, String receiverPermission, int appOp, Bundle options, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument 1718 startIntentSender(IntentSender intent, Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) argument
|
/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/ |
H A D | MainInteractionSession.java | 138 mOptionsContainer = mContentView.findViewById(R.id.options); 388 Log.i(TAG, "onPickOption: prompt=" + request.getVoicePrompt() + " options="
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
H A D | ListRowPresenter.java | 413 .options(createShadowOverlayOptions()) 762 * @return The options to be used for shadow, overlay and rounded corner.
|
/frameworks/base/tools/aapt2/compile/ |
H A D | Png.cpp | 1194 const PngOptions& options) { 1262 if (!writePng(mDiag, writePtr, writeInfoPtr, &pngInfo, options.grayScaleTolerance)) { 1193 process(const Source& source, std::istream* input, BigBuffer* outBuffer, const PngOptions& options) argument
|
/frameworks/base/services/core/java/com/android/server/policy/ |
H A D | PhoneWindowManager.java | 7191 Bundle options; field in class:PhoneWindowManager.ScreenLockTimeout 7198 mKeyguardDelegate.doKeyguardTimeout(options); 7201 options = null; 7205 public void setLockOptions(Bundle options) { argument 7206 this.options = options; 7213 public void lockNow(Bundle options) { argument 7216 if (options != null) { 7217 // In case multiple calls are made to lockNow, we don't wipe out the options 7219 mScreenLockTimeout.setLockOptions(options); [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
H A D | BaseStatusBar.java | 2099 ActivityOptions options = ActivityOptions.makeBasic(); 2100 options.setLaunchStackId(StackId.FULLSCREEN_WORKSPACE_STACK_ID); 2101 return options.toBundle();
|
/frameworks/base/tools/aapt2/ |
H A D | ResourceParser.cpp | 126 const ResourceParserOptions& options) : 127 mDiag(diag), mTable(table), mSource(source), mConfig(config), mOptions(options) { 124 ResourceParser(IDiagnostics* diag, ResourceTable* table, const Source& source, const ConfigDescription& config, const ResourceParserOptions& options) argument
|