Home
last modified time | relevance | path

Searched refs:strisprefix (Results 1 – 4 of 4) sorted by relevance

/external/oprofile/libutil/tests/
Dstring_tests.c26 if (!strisprefix("", "")) in main()
28 if (!strisprefix("a", "")) in main()
30 if (!strisprefix("a", "a")) in main()
32 if (!strisprefix("aa", "a")) in main()
34 if (strisprefix("a", "b")) in main()
/external/oprofile/libop/
Dop_events.c133 if (strisprefix(start, "include")) { in parse_um()
141 if (strisprefix(start, "name")) { in parse_um()
146 } else if (strisprefix(start, "type")) { in parse_um()
150 if (strisprefix(tagend, "mandatory")) { in parse_um()
152 } else if (strisprefix(tagend, "bitmask")) { in parse_um()
154 } else if (strisprefix(tagend, "exclusive")) { in parse_um()
159 } else if (strisprefix(start, "default")) { in parse_um()
/external/oprofile/libutil/
Dop_string.h43 int strisprefix(char const * str, char const * prefix);
Dop_string.c31 int strisprefix(char const * str, char const * prefix) in strisprefix() function