Searched defs:categories (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/cmds/service/
H A Dservice.cpp158 char* categories[16]; local
192 else if (strcmp(key, "categories") == 0)
196 categories[categoryCount] = strtok_r(value, ",", &context2);
198 while (categories[categoryCount] != NULL)
201 categories[categoryCount] = strtok_r(NULL, ",", &context2);
219 writeString16(data, categories[i]);
269 // " action=STR data=STR type=STR launchFlags=INT component=STR categories=STR[,STR,...]\n";
/frameworks/base/services/java/com/android/server/
H A DIntentResolver.java222 FastImmutableArraySet<String> categories = getFastIntentCategories(intent);
226 buildResolveList(intent, categories, debug, defaultOnly,
303 FastImmutableArraySet<String> categories = getFastIntentCategories(intent);
305 buildResolveList(intent, categories, debug, defaultOnly,
309 buildResolveList(intent, categories, debug, defaultOnly,
313 buildResolveList(intent, categories, debug, defaultOnly,
317 buildResolveList(intent, categories, debug, defaultOnly,
527 final Set<String> categories = intent.getCategories();
528 if (categories == null) {
531 return new FastImmutableArraySet<String>(categories
534 buildResolveList(Intent intent, FastImmutableArraySet<String> categories, boolean debug, boolean defaultOnly, String resolvedType, String scheme, F[] src, List<R> dest, int userId) argument
[all...]
H A DIntentResolverOld.java211 FastImmutableArraySet<String> categories = getFastIntentCategories(intent);
215 buildResolveList(intent, categories, debug, defaultOnly,
292 FastImmutableArraySet<String> categories = getFastIntentCategories(intent);
294 buildResolveList(intent, categories, debug, defaultOnly,
298 buildResolveList(intent, categories, debug, defaultOnly,
302 buildResolveList(intent, categories, debug, defaultOnly,
306 buildResolveList(intent, categories, debug, defaultOnly,
500 final Set<String> categories = intent.getCategories();
501 if (categories == null) {
504 return new FastImmutableArraySet<String>(categories
507 buildResolveList(Intent intent, FastImmutableArraySet<String> categories, boolean debug, boolean defaultOnly, String resolvedType, String scheme, List<F> src, List<R> dest, int userId) argument
[all...]
/frameworks/base/core/java/android/content/
H A DIntentFilter.java40 * match against actions, categories, and data (either via its type, scheme,
50 * <em>action</em>, <em>data</em>, and <em>categories</em>. For each of these
123 * <p><strong>Categories</strong> match if <em>all</em> of the categories in
124 * the Intent match categories given in the filter. Extra categories in the
126 * that unlike the action, an IntentFilter with no categories
127 * will only match an Intent that does not have any categories.
229 * The filter didn't match because it required one or more categories
965 * categories is the opposite of actions -- an Intent includes the
966 * categories tha
1025 matchCategories(Set<String> categories) argument
1103 match(String action, String type, String scheme, Uri data, Set<String> categories, String logTag) argument
[all...]

Completed in 1209 milliseconds