/frameworks/base/core/java/android/app/ |
IInstrumentationWatcher.aidl | 20 import android.content.ComponentName; 26 void instrumentationStatus(in ComponentName name, int resultCode, 28 void instrumentationFinished(in ComponentName name, int resultCode,
|
ISearchManager.aidl | 21 import android.content.ComponentName; 28 SearchableInfo getSearchableInfo(in ComponentName launchActivity); 31 ComponentName getGlobalSearchActivity(); 32 ComponentName getWebSearchActivity();
|
/system/bt/binder/android/bluetooth/ |
IBluetoothProfileServiceConnection.aidl | 19 import android.content.ComponentName; 28 void onServiceConnected(in ComponentName comp, in IBinder service); 29 void onServiceDisconnected(in ComponentName comp);
|
/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/system/ |
PackageManagerWrapper.java | 20 import android.content.ComponentName; 44 * @return the activity info for a given {@param componentName} and {@param userId}. 46 public ActivityInfo getActivityInfo(ComponentName componentName, int userId) { 48 return mIPackageManager.getActivityInfo(componentName, PackageManager.GET_META_DATA, 60 public ComponentName getHomeActivities(List<ResolveInfo> allHomeCandidates) {
|
/packages/apps/Camera2/src_pd/com/android/camera/util/ |
GalleryHelper.java | 18 import android.content.ComponentName; 52 ComponentName componentName = galleryIntent.getComponent(); 53 if (componentName != null 54 && GALLERY_PACKAGE_NAME.equals(componentName.getPackageName()) 55 && GALLERY_ACTIVITY_CLASS.equals(componentName.getClassName())) {
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/ |
ProtocolParamsEmulatorActivity.java | 3 import android.content.ComponentName; 30 void onApduSequenceComplete(ComponentName component, long duration) {
|
ThroughputService.java | 3 import android.content.ComponentName; 8 static final ComponentName COMPONENT = 9 new ComponentName("com.android.cts.verifier", 55 public ComponentName getComponent() {
|
/cts/tests/framework/base/activitymanager/appPrereleaseSdk/fake-framework/src/android/content/ |
ComponentName.java | 19 public class ComponentName { 20 public ComponentName(String pkg, String cls) {}
|
/cts/tests/tests/appwidget/packages/src/android/appwidget/cts/packages/ |
SimpleProvider.java | 7 import android.content.ComponentName; 20 new ComponentName(context, SimpleProvider.class),
|
/frameworks/base/core/java/android/content/pm/ |
ILauncherApps.aidl | 20 import android.content.ComponentName; 45 String callingPackage, in ComponentName component, in UserHandle user); 47 in ComponentName component, in Rect sourceBounds, 50 String callingPackage, in ComponentName component, in Rect sourceBounds, 55 String callingPackage, in ComponentName component, in UserHandle user); 60 in List shortcutIds, in ComponentName componentName, int flags, in UserHandle user); 75 IntentSender getShortcutConfigActivityIntent(String callingPackage, in ComponentName component,
|
/frameworks/base/telecomm/java/android/telecom/ |
PhoneAccountHandle.java | 20 import android.content.ComponentName; 37 * Note: This Class requires a non-null {@link ComponentName} and {@link UserHandle} to operate 43 private final ComponentName mComponentName; 48 @NonNull ComponentName componentName, 50 this(componentName, id, Process.myUserHandle()); 54 @NonNull ComponentName componentName, 57 checkParameters(componentName, userHandle); 58 mComponentName = componentName; [all...] |
/packages/apps/Nfc/src/com/android/nfc/cardemulation/ |
RegisteredNfcFServicesCache.java | 25 import android.content.ComponentName; 106 final HashMap<ComponentName, NfcFServiceInfo> services = 108 final HashMap<ComponentName, DynamicSystemCode> dynamicSystemCode = 110 final HashMap<ComponentName, DynamicNfcid2> dynamicNfcid2 = 188 ComponentName componentName) { 190 if (service.getComponent().equals(componentName)) return true; 195 public boolean hasService(int userId, ComponentName componentName) { 196 return getService(userId, componentName) != null [all...] |
/frameworks/base/core/java/android/content/ |
ComponentName.java | 38 public final class ComponentName implements Parcelable, Cloneable, Comparable<ComponentName> { 48 * will return a ComponentName with the package <code>"com.example"</code>and class name 55 * @return the new ComponentName 57 public static @NonNull ComponentName createRelative(@NonNull String pkg, @NonNull String cls) { 70 return new ComponentName(pkg, fullName); 79 * will return a ComponentName with the package <code>"com.example"</code>and class name 86 * @return the new ComponentName 88 public static @NonNull ComponentName createRelative(@NonNull Context pkg, @NonNull String cls) { 100 public ComponentName(@NonNull String pkg, @NonNull String cls) [all...] |
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/ |
RobolectricPackageManager.java | 9 import android.content.ComponentName; 24 private Map<ComponentName, ComponentState> componentList = new HashMap<ComponentName,ComponentState>(); 25 private Map<ComponentName, Drawable> drawableList = new HashMap<ComponentName, Drawable>(); 120 public Drawable getActivityIcon(ComponentName componentName) { 121 return drawableList.get(componentName); 124 public void addActivityIcon( ComponentName component, Drawable d ) { 135 i.setComponent( new ComponentName(packageName, "") ) [all...] |
/packages/apps/Settings/src/com/android/settings/location/ |
LocationFooterPreferenceController.java | 16 import android.content.ComponentName; 49 private Collection<ComponentName> mFooterInjectors; 98 sendBroadcastFooterDisplayed(data.componentName); 99 mFooterInjectors.add(data.componentName); 125 for (ComponentName componentName : mFooterInjectors) { 127 intent.setComponent(componentName); 137 void sendBroadcastFooterDisplayed(ComponentName componentName) { 139 intent.setComponent(componentName); [all...] |
/device/linaro/bootloader/edk2/IntelFrameworkPkg/Library/FrameworkUefiLib/ |
UefiDriverModel.c | 92 @param ComponentName A Component Name Protocol instance that this driver is producing.
107 IN CONST EFI_COMPONENT_NAME_PROTOCOL *ComponentName, OPTIONAL
124 if (ComponentName == NULL || FeaturePcdGet(PcdComponentNameDisable)) {
134 &gEfiComponentNameProtocolGuid, ComponentName,
139 if (ComponentName == NULL || FeaturePcdGet(PcdComponentNameDisable)) {
150 &gEfiComponentNameProtocolGuid, ComponentName,
158 if (ComponentName == NULL || FeaturePcdGet(PcdComponentNameDisable)) {
169 &gEfiComponentNameProtocolGuid, ComponentName,
175 if (ComponentName == NULL || FeaturePcdGet(PcdComponentNameDisable)) {
187 &gEfiComponentNameProtocolGuid, ComponentName,
[all...] |
/device/linaro/bootloader/edk2/MdePkg/Library/UefiLib/ |
UefiDriverModel.c | 92 @param ComponentName A Component Name Protocol instance that this driver is producing.
107 IN CONST EFI_COMPONENT_NAME_PROTOCOL *ComponentName, OPTIONAL
124 if (ComponentName == NULL || FeaturePcdGet(PcdComponentNameDisable)) {
134 &gEfiComponentNameProtocolGuid, ComponentName,
139 if (ComponentName == NULL || FeaturePcdGet(PcdComponentNameDisable)) {
150 &gEfiComponentNameProtocolGuid, ComponentName,
158 if (ComponentName == NULL || FeaturePcdGet(PcdComponentNameDisable)) {
169 &gEfiComponentNameProtocolGuid, ComponentName,
175 if (ComponentName == NULL || FeaturePcdGet(PcdComponentNameDisable)) {
187 &gEfiComponentNameProtocolGuid, ComponentName,
[all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/helpers/ |
SensorDeviceAdminReceiver.java | 20 import android.content.ComponentName; 29 * Gets the associated {@link ComponentName} of the current receiver. 31 public static ComponentName getComponentName(Context context) { 32 return new ComponentName(context, SensorDeviceAdminReceiver.class);
|
/frameworks/base/core/java/android/view/inputmethod/ |
InputMethodManagerInternal.java | 19 import android.content.ComponentName; 44 * Switches to VR InputMethod defined in the packageName of {@param componentName}. 46 void startVrInputMethodNoCheck(ComponentName componentName);
|
/frameworks/base/core/java/com/android/internal/notification/ |
NotificationAccessConfirmationActivityContract.java | 19 import android.content.ComponentName; 23 private static final ComponentName COMPONENT_NAME = new ComponentName( 30 public static Intent launcherIntent(int userId, ComponentName component, String packageTitle) {
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/accessibility/ |
AccessibilityUtils.java | 20 import android.content.ComponentName; 50 public static Set<ComponentName> getEnabledServicesFromSettings(Context context) { 71 public static Set<ComponentName> getEnabledServicesFromSettings(Context context, int userId) { 79 final Set<ComponentName> enabledServices = new HashSet<>(); 85 final ComponentName enabledService = ComponentName.unflattenFromString( 109 public static void setAccessibilityServiceState(Context context, ComponentName toggledService, 117 public static void setAccessibilityServiceState(Context context, ComponentName toggledService, 120 Set<ComponentName> enabledServices = AccessibilityUtils.getEnabledServicesFromSettings( 136 Set<ComponentName> installedServices = getInstalledServices(context) [all...] |
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/testutils/shadow/ |
ShadowSmsApplication.java | 19 import android.content.ComponentName; 31 private static ComponentName sDefaultSmsApplication; 39 public static ComponentName getDefaultSmsApplication(Context context, boolean updateIfNeeded) { 43 public static void setDefaultSmsApplication(ComponentName cn) {
|
/frameworks/support/legacy/core-utils/api/ |
current.txt | 6 method public static android.content.ComponentName startWakefulService(android.content.Context, android.content.Intent);
|
/frameworks/support/legacy/core-utils/api_legacy/ |
28.0.0-alpha1.txt | 6 method public static android.content.ComponentName startWakefulService(android.content.Context, android.content.Intent);
|
current.txt | 6 method public static android.content.ComponentName startWakefulService(android.content.Context, android.content.Intent);
|