Searched defs:component (Results 26 - 50 of 64) sorted by relevance

123

/frameworks/av/media/libstagefright/codecs/vorbis/dec/
H A DSoftVorbis.cpp49 OMX_COMPONENTTYPE **component)
50 : SimpleSoftOMXComponent(name, callbacks, appData, component),
475 OMX_PTR appData, OMX_COMPONENTTYPE **component) {
476 return new android::SoftVorbis(name, callbacks, appData, component);
45 SoftVorbis( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
473 createSoftOMXComponent( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
/frameworks/av/media/libstagefright/omx/
H A DSoftOMXComponent.cpp31 OMX_COMPONENTTYPE **component)
63 *component = mComponent;
112 OMX_HANDLETYPE component,
118 ((OMX_COMPONENTTYPE *)component)->pComponentPrivate;
125 OMX_HANDLETYPE component,
130 ((OMX_COMPONENTTYPE *)component)->pComponentPrivate;
137 OMX_HANDLETYPE component,
142 ((OMX_COMPONENTTYPE *)component)->pComponentPrivate;
149 OMX_HANDLETYPE component,
154 ((OMX_COMPONENTTYPE *)component)
27 SoftOMXComponent( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
111 SendCommandWrapper( OMX_HANDLETYPE component, OMX_COMMANDTYPE cmd, OMX_U32 param, OMX_PTR data) argument
124 GetParameterWrapper( OMX_HANDLETYPE component, OMX_INDEXTYPE index, OMX_PTR params) argument
136 SetParameterWrapper( OMX_HANDLETYPE component, OMX_INDEXTYPE index, OMX_PTR params) argument
148 GetConfigWrapper( OMX_HANDLETYPE component, OMX_INDEXTYPE index, OMX_PTR params) argument
160 SetConfigWrapper( OMX_HANDLETYPE component, OMX_INDEXTYPE index, OMX_PTR params) argument
172 GetExtensionIndexWrapper( OMX_HANDLETYPE component, OMX_STRING name, OMX_INDEXTYPE *index) argument
184 UseBufferWrapper( OMX_HANDLETYPE component, OMX_BUFFERHEADERTYPE **buffer, OMX_U32 portIndex, OMX_PTR appPrivate, OMX_U32 size, OMX_U8 *ptr) argument
199 AllocateBufferWrapper( OMX_HANDLETYPE component, OMX_BUFFERHEADERTYPE **buffer, OMX_U32 portIndex, OMX_PTR appPrivate, OMX_U32 size) argument
213 FreeBufferWrapper( OMX_HANDLETYPE component, OMX_U32 portIndex, OMX_BUFFERHEADERTYPE *buffer) argument
225 EmptyThisBufferWrapper( OMX_HANDLETYPE component, OMX_BUFFERHEADERTYPE *buffer) argument
236 FillThisBufferWrapper( OMX_HANDLETYPE component, OMX_BUFFERHEADERTYPE *buffer) argument
247 GetStateWrapper( OMX_HANDLETYPE component, OMX_STATETYPE *state) argument
[all...]
H A DSoftVideoDecoderOMXComponent.cpp53 OMX_COMPONENTTYPE **component)
54 : SimpleSoftOMXComponent(name, callbacks, appData, component),
43 SoftVideoDecoderOMXComponent( const char *name, const char *componentRole, OMX_VIDEO_CODINGTYPE codingType, const CodecProfileLevel *profileLevels, size_t numProfileLevels, int32_t width, int32_t height, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
H A DSoftVideoEncoderOMXComponent.cpp64 OMX_COMPONENTTYPE **component)
65 : SimpleSoftOMXComponent(name, callbacks, appData, component),
54 SoftVideoEncoderOMXComponent( const char *name, const char *componentRole, OMX_VIDEO_CODINGTYPE codingType, const CodecProfileLevel *profileLevels, size_t numProfileLevels, int32_t width, int32_t height, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
/frameworks/base/core/java/android/content/pm/
H A DLauncherApps.java212 * @param component The ComponentName of the activity to launch
217 public void startMainActivity(ComponentName component, UserHandle user, Rect sourceBounds, argument
220 Log.i(TAG, "StartMainActivity " + component + " " + user.getIdentifier());
223 mService.startActivityAsUser(component, sourceBounds, opts, user);
233 * @param component The ComponentName of the package to launch settings for.
238 public void startAppDetailsActivity(ComponentName component, UserHandle user, argument
241 mService.showAppDetailsAsUser(component, sourceBounds, opts, user);
266 * @param component The activity to check.
271 public boolean isActivityEnabled(ComponentName component, UserHandle user) { argument
273 return mService.isActivityEnabled(component, use
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSearchPanelView.java122 ComponentName component = intent.getComponent();
123 replaceDrawable(mLogo, component, ASSIST_ICON_METADATA_NAME);
129 public void replaceDrawable(ImageView v, ComponentName component, String name) { argument
130 if (component != null) {
135 component, PackageManager.GET_META_DATA).metaData;
139 Resources res = packageManager.getResourcesForActivity(component);
146 + component.flattenToShortString() + " not found", e);
149 + component.flattenToShortString(), nfe);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DTask.java41 /** The ComponentNameKey represents the unique primary key for a component
44 final ComponentName component; field in class:Task.ComponentNameKey
48 component = cn;
54 return Objects.hash(component, userId);
62 return component.equals(((ComponentNameKey) o).component) &&
85 /** Returns the component name key for this task. */
/frameworks/base/services/core/java/com/android/server/pm/
H A DLauncherAppsService.java246 public boolean isActivityEnabled(ComponentName component, UserHandle user) argument
248 ensureInUserProfiles(user, "Cannot check component for unrelated profile " + user);
256 ActivityInfo info = pm.getActivityInfo(component, 0, user.getIdentifier());
264 public void startActivityAsUser(ComponentName component, Rect sourceBounds, argument
275 launchIntent.setPackage(component.getPackageName());
280 ActivityInfo info = pm.getActivityInfo(component, 0, user.getIdentifier());
283 + component);
286 // Check that the component actually has Intent.CATEGORY_LAUCNCHER
288 // resolves based on the component if present.
294 if (activityInfo.packageName.equals(component
311 showAppDetailsAsUser(ComponentName component, Rect sourceBounds, Bundle opts, UserHandle user) argument
[all...]
/frameworks/base/services/print/java/com/android/server/print/
H A DPrintManagerService.java593 ComponentName component = new ComponentName(serviceInfo.packageName,
597 showEnableInstalledPrintServiceNotification(component, label,
737 private void showEnableInstalledPrintServiceNotification(ComponentName component, argument
742 intent.putExtra(EXTRA_PRINT_SERVICE_COMPONENT_NAME, component.flattenToString());
770 String notificationTag = getClass().getName() + ":" + component.flattenToString();
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DRecurrenceSet.java181 * EXRULE, and EXDATE values extracted from the parsed iCalendar component.
182 * @param component The iCalendar component containing the desired
185 * @return true if the component contained the necessary information
190 public static boolean populateContentValues(ICalendar.Component component, argument
194 component.getFirstProperty("DTSTART");
210 String duration = computeDuration(start, component);
211 String rrule = flattenProperties(component, "RRULE");
212 String rdate = extractDates(component.getFirstProperty("RDATE"));
213 String exrule = flattenProperties(component, "EXRUL
256 populateComponent(Cursor cursor, ICalendar.Component component) argument
325 populateComponent(ContentValues values, ICalendar.Component component) argument
384 addPropertiesForRuleStr(ICalendar.Component component, String propertyName, String ruleStr) argument
444 addPropertyForDateStr(ICalendar.Component component, String propertyName, String dateStr) argument
465 computeDuration(Time start, ICalendar.Component component) argument
499 flattenProperties(ICalendar.Component component, String name) argument
[all...]
H A DICalendar.java56 * A component within an iCalendar (VEVENT, VTODO, VJOURNAL, VFEEBUSY,
80 * Creates a new component with the provided name.
81 * @param name The name of the component.
89 * Returns the name of the component.
90 * @return The name of the component.
97 * Returns the parent of this component.
98 * @return The parent of this component.
116 * Adds a child component to this component.
117 * @param child The child component
427 parseComponentImpl(Component component, String text) argument
466 parseLine(String line, ParserState state, Component component) argument
655 parseComponent(Component component, String text) argument
[all...]
/frameworks/av/media/libstagefright/codecs/avc/enc/
H A DSoftAVCEncoder.cpp157 OMX_COMPONENTTYPE **component)
162 callbacks, appData, component),
715 OMX_PTR appData, OMX_COMPONENTTYPE **component) {
716 return new android::SoftAVCEncoder(name, callbacks, appData, component);
153 SoftAVCEncoder( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
713 createSoftOMXComponent( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dslice.cpp924 int component, SubBlock_indx, block_x, block_y; local
931 for (component = 0; component < 4; component++) /* partition index */
933 block_x = ((component & 1) << 1);
934 block_y = ((component >> 1) << 1);
/frameworks/base/core/java/android/accessibilityservice/
H A DAccessibilityServiceInfo.java397 * The Service that implements this accessibility service component.
543 public void setComponentName(ComponentName component) { argument
544 mId = component.flattenToShortString();
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHostView.java163 * @param component the component name of the widget
168 public static Rect getDefaultPaddingForWidget(Context context, ComponentName component, argument
180 appInfo = packageManager.getApplicationInfo(component.getPackageName(), 0);
/frameworks/base/core/java/android/widget/
H A DSuggestionsAdapter.java622 // Check the component that gave us the suggestion
636 * @param component Name of an activity.
640 private Drawable getActivityIconWithCache(ComponentName component) { argument
642 String componentIconKey = component.flattenToShortString();
649 Drawable drawable = getActivityIcon(component);
659 * @param component Name of an activity.
663 private Drawable getActivityIcon(ComponentName component) { argument
667 activityInfo = pm.getActivityInfo(component, PackageManager.GET_META_DATA);
674 String pkg = component.getPackageName();
678 + component
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentTasksLoader.java150 private boolean isCurrentHomeActivity(ComponentName component, ActivityInfo homeInfo) { argument
157 && homeInfo.packageName.equals(component.getPackageName())
158 && homeInfo.name.equals(component.getClassName());
/frameworks/base/services/core/java/com/android/server/notification/
H A DConditionProviders.java110 if (filter != null && !filter.matches(r.component)) continue;
178 if (info.component.equals(mExitConditionComponent)) {
187 if (!r.component.equals(info.component)) continue;
202 if (!r.component.equals(removed.component)) continue;
265 private ConditionRecord getRecordLocked(Uri id, ComponentName component) { argument
269 if (r.id.equals(id) && r.component.equals(component)) {
273 final ConditionRecord r = new ConditionRecord(id, component);
340 ensureRecordExists(Condition condition, IConditionProvider provider, ComponentName component) argument
601 public final ComponentName component; field in class:ConditionProviders.ConditionRecord
607 ConditionRecord(Uri id, ComponentName component) argument
[all...]
H A DZenLog.java104 public static void traceExitCondition(Condition c, ComponentName component, String reason) { argument
105 append(TYPE_EXIT_CONDITION, c + "," + componentToString(component) + "," + reason);
165 private static String componentToString(ComponentName component) { argument
166 return component != null ? component.toShortString() : null;
H A DManagedServices.java60 * - An associated system settings value with a list of enabled component names.
83 // lists the component names of all enabled (and therefore connected)
116 ComponentName component, int userid, boolean isSystem, ServiceConnection connection,
118 return new ManagedServiceInfo(service, component, userid, isSystem, connection,
136 if (filter != null && !filter.matches(info.component)) continue;
137 pw.println(" " + info.component
194 public void registerService(IInterface service, ComponentName component, int userid) { argument
196 ManagedServiceInfo info = registerServiceImpl(service, component, userid);
304 final ComponentName component
306 if (component !
115 newServiceInfo(IInterface service, ComponentName component, int userid, boolean isSystem, ServiceConnection connection, int targetSdkVersion) argument
494 registerServiceImpl(final IInterface service, final ComponentName component, final int userid) argument
550 public ComponentName component; field in class:ManagedServices.ManagedServiceInfo
556 ManagedServiceInfo(IInterface service, ComponentName component, int userid, boolean isSystem, ServiceConnection connection, int targetSdkVersion) argument
[all...]
/frameworks/base/services/usage/java/com/android/server/usage/
H A DUsageStatsService.java473 public void reportEvent(ComponentName component, int userId, int eventType) { argument
474 if (component == null) {
475 Slog.w(TAG, "Event reported without a component name");
480 event.mPackage = component.getPackageName();
481 event.mClass = component.getClassName();
/frameworks/rs/
H A DrsElement.cpp133 Component component; local
134 component.loadFromStream(stream);
139 component.getType(),
140 component.getKind(),
141 component.getIsNormalized(),
142 component.getVectorSize());
/frameworks/av/media/libstagefright/codecs/aacdec/
H A DSoftAAC2.cpp62 OMX_COMPONENTTYPE **component)
63 : SimpleSoftOMXComponent(name, callbacks, appData, component),
1080 OMX_PTR appData, OMX_COMPONENTTYPE **component) {
1081 return new android::SoftAAC2(name, callbacks, appData, component);
58 SoftAAC2( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
1078 createSoftOMXComponent( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
/frameworks/av/media/libstagefright/codecs/hevcdec/
H A DSoftHEVC.cpp67 OMX_COMPONENTTYPE **component)
71 appData, component),
768 OMX_COMPONENTTYPE **component) {
769 return new android::SoftHEVC(name, callbacks, appData, component);
63 SoftHEVC( const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
766 createSoftOMXComponent(const char *name, const OMX_CALLBACKTYPE *callbacks, OMX_PTR appData, OMX_COMPONENTTYPE **component) argument
/frameworks/base/services/core/java/com/android/server/dreams/
H A DDreamManagerService.java259 private boolean validateDream(ComponentName component) { argument
260 if (component == null) return false;
261 final ServiceInfo serviceInfo = getServiceInfo(component);
263 Slog.w(TAG, "Dream " + component + " does not exist");
267 Slog.w(TAG, "Dream " + component
284 for (ComponentName component : components) {
285 if (validateDream(component)) {
286 validComponents.add(component);
291 // fallback to the default dream component if necessary
321 // Read the component fro
[all...]

Completed in 548 milliseconds

123