HomeSort by relevance Sort by last modified time
    Searched defs:pmatch (Results 1 - 8 of 8) sorted by null

  /cts/suite/audio_quality/lib/src/audio/
AudioHardware.cpp 50 regmatch_t pmatch[nmatch]; local
51 if (!SimpleScriptExec::checkIfPassed(resultStr, match, nmatch, pmatch)) {
55 LOGV("pmatch 0: %d, %d 1:%d, %d 2:%d, %d",
56 pmatch[0].rm_so, pmatch[0].rm_eo,
57 pmatch[1].rm_so, pmatch[1].rm_eo,
58 pmatch[2].rm_so, pmatch[2].rm_eo);
60 if (pmatch[1].rm_so == -1)
    [all...]
  /external/libmicrohttpd/src/examples/
mhd2spdy_structures.c 77 regmatch_t pmatch[10]; local
79 if (0 != (ret = regexec(preg, full_uri, nmatch, pmatch, 0)))
88 asprintf(&((*uri)->scheme), "%.*s",pmatch[2].rm_eo - pmatch[2].rm_so, &full_uri[pmatch[2].rm_so]);
89 asprintf(&((*uri)->host_and_port), "%.*s",pmatch[4].rm_eo - pmatch[4].rm_so, &full_uri[pmatch[4].rm_so]);
90 asprintf(&((*uri)->path), "%.*s",pmatch[5].rm_eo - pmatch[5].rm_so, &full_uri[pmatch[5].rm_so])
    [all...]
  /external/syslinux/gpxe/src/drivers/net/
natsemi.c 254 u16 pmatch[3]; local
275 /* PMATCH */
278 pmatch[i] = inw(np->ioaddr + RxFilterData);
310 /* restore PMATCH */
313 outw (pmatch[i], np->ioaddr + RxFilterData);
  /system/core/toolbox/upstream-netbsd/usr.bin/grep/
util.c 290 regmatch_t pmatch; local
297 pmatch.rm_so = st;
298 pmatch.rm_eo = l->len;
309 l->len, &pmatch);
311 st = pmatch.rm_eo;
314 &pmatch, eflags);
316 st = pmatch.rm_eo;
322 (pmatch.rm_so != 0 ||
323 (size_t)pmatch.rm_eo != l->len))
326 if (fg_pattern[i].word && pmatch.rm_so != 0)
    [all...]
  /cts/suite/audio_quality/lib/src/task/
TaskCase.cpp 242 regmatch_t pmatch[nmatch]; local
253 while (regexec(&re, src, nmatch, pmatch, 0) == 0) {
254 matchStart = strStart + pmatch[1].rm_so;
255 matchEnd = strStart + pmatch[1].rm_eo;
256 translated.append(StringUtil::substr(orig, strStart, pmatch[1].rm_so - 1)); //-1 for $
268 src += pmatch[1].rm_eo;
269 strStart += pmatch[1].rm_eo;
  /bionic/libc/upstream-netbsd/lib/libc/regex/
engine.c 110 regmatch_t *pmatch; /* [nsub+1] (0 element unused) */ member in struct:match
129 static int matcher(struct re_guts *g, const char *string, size_t nmatch, regmatch_t pmatch[], int eflags);
173 == size_t nmatch, regmatch_t pmatch[], int eflags);
180 regmatch_t pmatch[],
196 /* pmatch checked below */
202 _DIAGASSERT(pmatch != NULL);
203 start = string + (size_t)pmatch[0].rm_so;
204 stop = string + (size_t)pmatch[0].rm_eo;
225 m->pmatch = NULL;
261 if (m->pmatch == NULL
    [all...]
  /external/libmicrohttpd/src/spdy2http/
proxy.c 240 regmatch_t pmatch[10]; local
242 if (0 != (ret = regexec(preg, full_uri, nmatch, pmatch, 0)))
253 (int) (pmatch[2].rm_eo - pmatch[2].rm_so),
254 &full_uri[pmatch[2].rm_so]);
256 (int) (pmatch[4].rm_eo - pmatch[4].rm_so),
257 &full_uri[pmatch[4].rm_so]);
260 (int) (pmatch[5].rm_eo - pmatch[5].rm_so)
    [all...]
  /external/pcre/dist2/src/
pcre2test.c 5936 regmatch_t *pmatch = NULL; local
    [all...]

Completed in 299 milliseconds