Home | History | Annotate | Download | only in dmtracedump

Lines Matching refs:filterKey

256 typedef struct FilterKey {
260 } FilterKey;
271 FilterKey* filterKeys;
2480 * Determines whether the given FilterKey matches the method. The FilterKey's
2483 int keyMatchesMethod(FilterKey filterKey, MethodEntry* method, int index)
2485 if (filterKey.type[index] == 0) { // Class
2487 fprintf(stderr, " class is %s; filter key is %s\n", method->className, filterKey.keys[index]);
2489 if (strcmp(method->className, filterKey.keys[index]) == 0) {
2502 fprintf(stderr, " method is %s; filter key is %s\n", str, filterKey.keys[index]);
2504 if (strcmp(str, filterKey.keys[index]) == 0) {
2519 * It is de-activated when the method matches the 'exit' key of the same FilterKey that activated it
2530 * had not entered before, and that method happens to match the 'exit' key of a FilterKey.
2758 filter->filterKeys = (FilterKey*) malloc(sizeof(FilterKey) * count);