Searched refs:componentName (Results 1 - 25 of 41) sorted by relevance

12

/frameworks/base/core/java/com/android/internal/app/
H A DIUsageStats.aidl23 void noteResumeComponent(in ComponentName componentName);
24 void notePauseComponent(in ComponentName componentName);
25 void noteLaunchTime(in ComponentName componentName, int millis);
26 PkgUsageStats getPkgUsageStats(in ComponentName componentName);
/frameworks/support/v4/java/android/support/v4/content/
H A DIntentCompat.java31 Intent makeMainActivity(ComponentName componentName); argument
38 public Intent makeMainActivity(ComponentName componentName) { argument
40 intent.setComponent(componentName);
67 public Intent makeMainActivity(ComponentName componentName) { argument
68 return IntentCompatHoneycomb.makeMainActivity(componentName);
71 public Intent makeRestartActivityTask(ComponentName componentName) { argument
72 return IntentCompatHoneycomb.makeRestartActivityTask(componentName);
/frameworks/base/core/java/android/service/dreams/
H A DIDreamManager.aidl31 void testDream(in ComponentName componentName);
/frameworks/av/media/libstagefright/omx/tests/
H A DOMXHarness.h67 const char *componentName, const char *componentRole);
70 const char *componentName, const char *componentRole);
73 const char *componentName, const char *componentRole);
H A DOMXHarness.cpp277 const char *componentName, const char *componentRole) {
278 if (strncmp(componentName, "OMX.", 4)) {
288 mOMX->allocateNode(componentName, this, &node);
556 const char *componentName, const char *componentRole) {
596 source, componentName);
739 const char *componentName, const char *componentRole) {
740 printf("testing %s [%s] ... ", componentName, componentRole);
741 ALOGI("testing %s [%s].", componentName, componentRole);
743 status_t err1 = testStateTransitions(componentName, componentRole);
744 status_t err2 = testSeek(componentName, componentRol
276 testStateTransitions( const char *componentName, const char *componentRole) argument
555 testSeek( const char *componentName, const char *componentRole) argument
738 test( const char *componentName, const char *componentRole) argument
761 const char *componentName = info.mName.string(); local
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DNavUtils.java249 * @param componentName ComponentName for the source Activity
253 public static Intent getParentActivityIntent(Context context, ComponentName componentName) argument
255 String parentActivity = getParentActivityName(context, componentName);
260 componentName.getPackageName(), parentActivity);
288 * the application's manifest. The source activity is provided by componentName.
291 * @param componentName ComponentName for the source Activity
295 public static String getParentActivityName(Context context, ComponentName componentName) argument
298 ActivityInfo info = pm.getActivityInfo(componentName, PackageManager.GET_META_DATA);
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DGlobalKeyManager.java105 String componentName = parser.getAttributeValue(null, ATTR_COMPONENT);
109 componentName));
H A DEnableAccessibilityController.java246 ComponentName componentName = new ComponentName(serviceInfo.packageName, serviceInfo.name);
249 String enabledServiceString = componentName.flattenToString();
273 componentName, enableTouchExploration);
/frameworks/base/services/java/com/android/server/am/
H A DUsageStatsService.java680 public void noteResumeComponent(ComponentName componentName) { argument
684 if ((componentName == null) ||
685 ((pkgName = componentName.getPackageName()) == null)) {
704 && componentName.getClassName().equals(mLastResumedComp);
708 mLastResumedComp = componentName.getClassName();
730 public void notePauseComponent(ComponentName componentName) { argument
735 if ((componentName == null) ||
736 ((pkgName = componentName.getPackageName()) == null)) {
761 public void noteLaunchTime(ComponentName componentName, int millis) { argument
764 if ((componentName
788 getPkgUsageStats(ComponentName componentName) argument
[all...]
H A DProviderMap.java301 ComponentName componentName = name != null
304 if (componentName == null) {
309 componentName = null;
316 if (componentName != null) {
317 if (r1.name.equals(componentName)) {
/frameworks/base/services/java/com/android/server/
H A DWallpaperManagerService.java784 boolean bindWallpaperComponentLocked(ComponentName componentName, boolean force, argument
786 if (DEBUG) Slog.v(TAG, "bindWallpaperComponentLocked: componentName=" + componentName);
791 if (componentName == null) {
796 } else if (wallpaper.wallpaperComponent.equals(componentName)) {
805 if (componentName == null) {
810 componentName = ComponentName.unflattenFromString(defaultComponent);
811 if (DEBUG) Slog.v(TAG, "Use default component wallpaper:" + componentName);
813 if (componentName == null) {
815 componentName
[all...]
/frameworks/base/core/java/android/app/
H A DSearchDialog.java211 ComponentName componentName, Bundle appSearchData) {
212 boolean success = doShow(initialQuery, selectInitialQuery, componentName, appSearchData);
228 ComponentName componentName, Bundle appSearchData) {
230 if (!show(componentName, appSearchData)) {
248 private boolean show(ComponentName componentName, Bundle appSearchData) { argument
251 Log.d(LOG_TAG, "show(" + componentName + ", "
258 mSearchable = searchManager.getSearchableInfo(componentName);
264 mLaunchComponent = componentName;
210 show(String initialQuery, boolean selectInitialQuery, ComponentName componentName, Bundle appSearchData) argument
227 doShow(String initialQuery, boolean selectInitialQuery, ComponentName componentName, Bundle appSearchData) argument
H A DSearchManager.java745 * @param componentName The activity to get searchable information for.
749 public SearchableInfo getSearchableInfo(ComponentName componentName) { argument
751 return mService.getSearchableInfo(componentName);
/frameworks/av/media/libstagefright/omx/
H A DOMX.cpp196 char componentName[256]; local
198 componentName, sizeof(componentName), index) == OMX_ErrorNone) {
202 info.mName = componentName;
206 mMaster->getRolesOfComponent(componentName, &roles);
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DICalendar.java491 String componentName = extractValue(state);
492 Component child = new Component(componentName, component);
499 String componentName = extractValue(state);
501 !componentName.equals(component.getName())) {
502 throw new FormatException("Unexpected END " + componentName);
/frameworks/base/core/java/android/content/pm/
H A DRegisteredServicesCache.java226 public final ComponentName componentName; field in class:RegisteredServicesCache.ServiceInfo
230 public ServiceInfo(V type, ComponentName componentName, int uid) { argument
232 this.componentName = componentName;
238 return "ServiceInfo: " + type + ", " + componentName + ", uid " + uid;
432 ComponentName componentName = new ComponentName(si.packageName, si.name);
464 return new ServiceInfo<V>(v, componentName, uid);
H A DIPackageManager.aidl231 void setComponentEnabledSetting(in ComponentName componentName,
237 int getComponentEnabledSetting(in ComponentName componentName, int userId);
/frameworks/av/include/media/stagefright/
H A DOMXCodec.h120 static bool findCodecQuirks(const char *componentName, uint32_t *quirks);
236 bool isEncoder, const char *mime, const char *componentName,
394 const char *componentName, const char *mime,
/frameworks/base/services/java/com/android/server/pm/
H A DPackageSettingBase.java340 int getCurrentEnabledStateLPr(String componentName, int userId) { argument
342 if (state.enabledComponents != null && state.enabledComponents.contains(componentName)) {
345 && state.disabledComponents.contains(componentName)) {
/frameworks/av/media/libstagefright/
H A DOMXCodec.cpp135 static bool IsSoftwareCodec(const char *componentName) { argument
136 if (!strncmp("OMX.google.", componentName, 11)) {
140 if (!strncmp("OMX.", componentName, 4)) {
205 const char *componentName = list->getCodecName(matchIndex); local
208 if (matchComponentName && strcmp(componentName, matchComponentName)) {
216 if (((flags & kSoftwareCodecsOnly) && IsSoftwareCodec(componentName)) ||
217 ((flags & kHardwareCodecsOnly) && !IsSoftwareCodec(componentName)) ||
222 entry->mName = String8(componentName);
256 bool OMXCodec::findCodecQuirks(const char *componentName, uint32_t *quirks) { argument
263 ssize_t index = list->findCodecByName(componentName);
312 const char *componentName = componentNameBase; local
1315 OMXCodec( const sp<IOMX> &omx, IOMX::node_id node, uint32_t quirks, uint32_t flags, bool isEncoder, const char *mime, const char *componentName, const sp<MediaSource> &source, const sp<ANativeWindow> &nativeWindow) argument
4543 const char *componentName = matchingCodecs.itemAt(c).mName.string(); local
4559 QueryCodec( const sp<IOMX> &omx, const char *componentName, const char *mime, bool isEncoder, CodecCapabilities *caps) argument
[all...]
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DHwTests.java125 protected Intent activityIntent(String pkg, String componentName) { argument
127 result.setClassName(pkg, componentName);
/frameworks/base/services/java/com/android/server/dreams/
H A DDreamManagerService.java377 for (ComponentName componentName : componentNames) {
381 names.append(componentName.flattenToString());
/frameworks/base/core/java/android/accounts/
H A DAccountManager.java1821 ComponentName componentName = ComponentName.unflattenFromString(
1824 intent.setClassName(componentName.getPackageName(),
1825 componentName.getClassName());
1981 ComponentName componentName = ComponentName.unflattenFromString(
1983 intent.setClassName(componentName.getPackageName(),
1984 componentName.getClassName());
/frameworks/base/services/java/com/android/server/accessibility/
H A DAccessibilityManagerService.java1126 for (ComponentName componentName : componentNames) {
1130 builder.append(componentName.flattenToShortString());
1143 ComponentName componentName = ComponentName.unflattenFromString(
1145 Service service = componentNameToServiceMap.get(componentName);
1149 if (userState.mBindingServices.contains(componentName)) {
1152 if (userState.mEnabledServices.contains(componentName)) {
1154 service = new Service(userState.mUserId, componentName, installedService);
1168 userState.mBindingServices.remove(componentName);
1316 ComponentName componentName = new ComponentName(
1318 if (userState.mTouchExplorationGrantedServices.contains(componentName)) {
1752 Service(int userId, ComponentName componentName, AccessibilityServiceInfo accessibilityServiceInfo) argument
1886 onServiceConnected(ComponentName componentName, IBinder service) argument
2224 onServiceDisconnected(ComponentName componentName) argument
[all...]
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DRegisteredMediaRouteProvider.java56 public RegisteredMediaRouteProvider(Context context, ComponentName componentName) { argument
57 super(context, new ProviderMetadata(componentName.getPackageName()));
59 mComponentName = componentName;

Completed in 1797 milliseconds

12