Searched defs:matches (Results 1 - 5 of 5) sorted by relevance

/system/security/keystore/
H A Dkeystore_cli.cpp149 Vector<String16> matches; local
150 int32_t ret = service->saw(name, uid, &matches);
158 Vector<String16>::const_iterator it = matches.begin();
159 for (; it != matches.end(); ++it) {
H A DIKeystoreService.cpp172 virtual int32_t saw(const String16& name, int uid, Vector<String16>* matches) argument
186 matches->push(reply.readString16());
715 Vector<String16> matches; local
716 int32_t ret = saw(name, uid, &matches);
718 reply->writeInt32(matches.size());
719 Vector<String16>::const_iterator it = matches.begin();
720 for (; it != matches.end(); ++it) {
H A Dkeystore.cpp478 TYPE_ANY = 0, // meta type that matches anything
1158 ResponseCode saw(const android::String8& prefix, android::Vector<android::String16> *matches, argument
1190 matches->push(android::String16(match, extra));
1704 int32_t saw(const String16& prefix, int targetUid, Vector<String16>* matches) { argument
1721 if (mKeyStore->saw(filename, matches, targetUid) != ::NO_ERROR) {
/system/core/toolbox/upstream-netbsd/usr.bin/grep/
H A Dutil.c248 /* Count the matches if we have a match limit */
283 * matches. The matching lines are passed to printline() to display the
289 regmatch_t matches[MAX_LINE_MATCHES]; local
343 matches[m++] = pmatch;
344 /* matches - skip further patterns */
353 /* One pass if we are not recording matches */
358 break; /* No matches */
373 printline(l, ':', matches, m);
375 printline(l, '-', matches, m);
444 printline(struct str *line, int sep, regmatch_t *matches, in argument
[all...]
/system/core/liblog/tests/
H A Dliblog_test.cpp448 bool matches = false; local
481 matches = true;
488 EXPECT_EQ(true, matches);

Completed in 95 milliseconds