Searched defs:component (Results 1 - 25 of 95) sorted by relevance

1234

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/component/
H A DRecentsVisibilityChangedEvent.java17 package com.android.systemui.recents.events.component;
H A DScreenPinningRequestEvent.java17 package com.android.systemui.recents.events.component;
/frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/
H A DMockUtils.java53 public static Intent checkIntentComponent(final ComponentName component) { argument
58 return Objects.equal(((Intent) item).getComponent(), component);
63 description.appendText("Intent: component=\"" + component + "\"");
/frameworks/av/media/libstagefright/omx/
H A DSimpleSoftOMXComponent.cpp33 OMX_COMPONENTTYPE **component)
34 : SoftOMXComponent(name, callbacks, appData, component),
179 ALOGW("component requires at least %u buffers (%u requested)",
519 // The client will then transition the component from Executing to Idle,
29 SimpleSoftOMXComponent( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
H A DSoftOMXPlugin.cpp74 OMX_COMPONENTTYPE **component) {
112 (*createSoftOMXComponent)(name, callbacks, appData, component);
139 OMX_COMPONENTTYPE *component) {
142 ((OMX_COMPONENTTYPE *)component)->pComponentPrivate;
70 makeComponentInstance( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
138 destroyComponentInstance( OMX_COMPONENTTYPE *component) argument
H A DOMXMaster.cpp108 ALOGE("A component of name '%s' already exists, ignoring this one.",
149 OMX_COMPONENTTYPE **component) {
153 *component = NULL;
163 plugin->makeComponentInstance(name, callbacks, appData, component);
169 mPluginByInstance.add(*component, plugin);
175 OMX_COMPONENTTYPE *component) {
178 ssize_t index = mPluginByInstance.indexOfKey(component);
187 return plugin->destroyComponentInstance(component);
145 makeComponentInstance( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
174 destroyComponentInstance( OMX_COMPONENTTYPE *component) argument
/frameworks/base/core/java/android/service/vr/
H A DVrListenerService.java73 public void focusedActivityChanged(ComponentName component) {
74 mHandler.obtainMessage(MSG_ON_CURRENT_VR_ACTIVITY_CHANGED, component).sendToTarget();
112 * @param component the {@link ComponentName} of the VR activity that the system has
118 public void onCurrentVrActivityChanged(ComponentName component) { argument
123 * Checks if the given component is enabled in user settings.
125 * <p>If this component is not enabled in the user's settings, it will not be started when
130 * @param context the {@link Context} to use for looking up the requested component.
131 * @param requestedComponent the name of the component that implements
134 * @return {@code true} if this component is enabled in settings.
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/external/
H A DTileServicesTests.java113 protected TileServiceManager onCreateTileService(ComponentName component, Tile qsTile) { argument
/frameworks/base/cmds/dpm/src/com/android/commands/dpm/
H A DDpm.java67 "dpm set-active-admin: Sets the given component as active admin" +
70 "dpm set-device-owner: Sets the given component as active admin, and its" +
73 "dpm set-profile-owner: Sets the given component as active admin and profile" +
140 System.out.println("Success: Active admin set to component " + mComponent.toShortString());
162 System.out.println("Active admin set to component " + mComponent.toShortString());
177 throw new RuntimeException("Can't set component " + mComponent.toShortString() +
193 private ComponentName parseComponentName(String component) { argument
194 ComponentName cn = ComponentName.unflattenFromString(component);
196 throw new IllegalArgumentException ("Invalid component " + component);
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSystemUI.java48 public <T, C extends T> void putComponent(Class<T> interfaceType, C component) { argument
50 mComponents.put(interfaceType, component);
/frameworks/base/tests/MusicBrowserDemo/src/com/example/android/musicbrowserdemo/
H A DAppListFragment.java61 Log.i("AppListFragment", "Item clicked: " + position + " -- " + item.component);
66 args.putParcelable(BrowserListFragment.ARG_COMPONENT, item.component);
78 final ComponentName component; field in class:AppListFragment.Item
82 this.component = c;
/frameworks/data-binding/extensions/library/src/main/java/android/databinding/
H A DDataBindingUtil.java293 private static <T extends ViewDataBinding> T bindToAddedViews(DataBindingComponent component, argument
299 return bind(component, childView, layoutId);
305 return bind(component, children, layoutId);
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/adapter/
H A DInstanceAdapter.java52 public static void setInstanceAttr6(DataBindingComponent component, TextView view, String text) { argument
53 view.setText(String.format("%s %s", text, component == null ? "null" : "component"));
57 public void setInstanceAttr7(DataBindingComponent component, TextView view, String text) { argument
58 view.setText(String.format(format, text, component == null ? "null" : "component", "bar", "baz"));
62 public void setInstanceAttr8(TestComponent component, TextView view, String text, String text2) { argument
63 view.setText(String.format(format, text, text2, component == null ? "null" : "component",
/frameworks/av/media/libstagefright/codecs/amrnb/enc/
H A DSoftAMRNBEncoder.cpp45 OMX_COMPONENTTYPE **component)
46 : SimpleSoftOMXComponent(name, callbacks, appData, component),
430 OMX_PTR appData, OMX_COMPONENTTYPE **component) {
431 return new android::SoftAMRNBEncoder(name, callbacks, appData, component);
41 SoftAMRNBEncoder( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
428 createSoftOMXComponent( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
/frameworks/av/media/libstagefright/codecs/gsm/dec/
H A DSoftGSM.cpp44 OMX_COMPONENTTYPE **component)
45 : SimpleSoftOMXComponent(name, callbacks, appData, component),
308 OMX_PTR appData, OMX_COMPONENTTYPE **component) {
309 return new android::SoftGSM(name, callbacks, appData, component);
40 SoftGSM( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
306 createSoftOMXComponent( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
/frameworks/av/media/libstagefright/codecs/mp3dec/
H A DSoftMP3.cpp43 OMX_COMPONENTTYPE **component)
44 : SimpleSoftOMXComponent(name, callbacks, appData, component),
428 OMX_PTR appData, OMX_COMPONENTTYPE **component) {
429 return new android::SoftMP3(name, callbacks, appData, component);
39 SoftMP3( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
426 createSoftOMXComponent( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
/frameworks/av/media/libstagefright/codecs/raw/
H A DSoftRaw.cpp41 OMX_COMPONENTTYPE **component)
42 : SimpleSoftOMXComponent(name, callbacks, appData, component),
236 OMX_PTR appData, OMX_COMPONENTTYPE **component) {
237 return new android::SoftRaw(name, callbacks, appData, component);
37 SoftRaw( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
234 createSoftOMXComponent( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
/frameworks/base/cmds/telecom/src/com/android/commands/telecom/
H A DTelecom.java79 "telecom set-default-dialer: Sets the default dialer to the given component. \n" +
196 final ComponentName component = parseComponentName(nextArgRequired());
206 return new PhoneAccountHandle(component, accountId, userHandle);
209 private ComponentName parseComponentName(String component) { argument
210 ComponentName cn = ComponentName.unflattenFromString(component);
212 throw new IllegalArgumentException ("Invalid component " + component);
/frameworks/base/core/java/android/app/usage/
H A DUsageStatsManagerInternal.java34 * @param component The component for which this event occurred.
35 * @param userId The user id to which the component belongs to.
39 public abstract void reportEvent(ComponentName component, int userId, int eventType); argument
45 * @param userId The user id to which the component belongs to.
/frameworks/base/services/core/java/com/android/server/notification/
H A DZenModeConditions.java78 final ComponentName component = mSubscriptions.valueAt(i);
81 mConditionProviders.unsubscribeIfNecessary(component, id);
100 public void onServiceAdded(ComponentName component) { argument
101 if (DEBUG) Log.d(TAG, "onServiceAdded " + component);
127 rule.component = sp.getComponent();
132 final IConditionProvider cp = mConditionProviders.findConditionProvider(rule.component);
135 mConditionProviders.ensureRecordExists(rule.component, id, cp);
138 if (rule.component == null) {
139 Log.w(TAG, "No component found for automatic rule: " + rule.conditionId);
147 if (mConditionProviders.subscribeIfNecessary(rule.component, rul
160 isAutomaticActive(ComponentName component) argument
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DPreferredComponent.java39 private static final String ATTR_NAME = "name"; // component name
61 ComponentName component, boolean always) {
64 mComponent = component;
66 mShortComponent = component.flattenToShortString();
60 PreferredComponent(Callbacks callbacks, int match, ComponentName[] set, ComponentName component, boolean always) argument
/frameworks/native/cmds/service/
H A Dservice.cpp194 char* component = NULL; local
226 else if (strcmp(key, "component") == 0)
228 component = value;
250 writeString16(data, component);
310 // " action=STR data=STR type=STR launchFlags=INT component=STR categories=STR[,STR,...]\n";
/frameworks/av/media/libstagefright/codecs/aacenc/
H A DSoftAACEncoder.cpp44 OMX_COMPONENTTYPE **component)
45 : SimpleSoftOMXComponent(name, callbacks, appData, component),
586 OMX_PTR appData, OMX_COMPONENTTYPE **component) {
587 return new android::SoftAACEncoder(name, callbacks, appData, component);
40 SoftAACEncoder( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
584 createSoftOMXComponent( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
H A DSoftAACEncoder2.cpp52 OMX_COMPONENTTYPE **component)
53 : SimpleSoftOMXComponent(name, callbacks, appData, component),
710 OMX_PTR appData, OMX_COMPONENTTYPE **component) {
711 return new android::SoftAACEncoder2(name, callbacks, appData, component);
48 SoftAACEncoder2( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
708 createSoftOMXComponent( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
/frameworks/av/media/libstagefright/codecs/amrnb/dec/
H A DSoftAMR.cpp43 OMX_COMPONENTTYPE **component)
44 : SimpleSoftOMXComponent(name, callbacks, appData, component),
538 OMX_PTR appData, OMX_COMPONENTTYPE **component) {
539 return new android::SoftAMR(name, callbacks, appData, component);
39 SoftAMR( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
536 createSoftOMXComponent( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument

Completed in 593 milliseconds

1234