Home
last modified time | relevance | path

Searched refs:rm_so (Results 1 – 8 of 8) sorted by relevance

/aosp12/hardware/interfaces/security/keymint/support/
H A Dkeymint_utils.cpp42 if (match.rm_so == -1) return 0; in match_to_uint32()
44 size_t len = match.rm_eo - match.rm_so; in match_to_uint32()
45 std::string s(expression + match.rm_so, len); in match_to_uint32()
/aosp12/system/keymaster/android_keymaster/
H A Dkeymaster_configuration.cpp51 if (match.rm_so == -1) return 0; in match_to_uint32()
53 size_t len = match.rm_eo - match.rm_so; in match_to_uint32()
54 std::string s(expression + match.rm_so, len); in match_to_uint32()
/aosp12/bionic/libc/upstream-netbsd/lib/libc/regex/
H A Dengine.c203 start = string + (size_t)pmatch[0].rm_so; in matcher()
269 m->pmatch[i].rm_so = m->pmatch[i].rm_eo = (regoff_t)-1; in matcher()
300 assert(m->pmatch[i].rm_so == (regoff_t)-1); in matcher()
320 pmatch[0].rm_so = m->coldp - m->offp; in matcher()
329 pmatch[i].rm_so = (regoff_t)-1; in matcher()
539 m->pmatch[i].rm_so = sp - m->offp; in dissect()
676 assert(m->pmatch[i].rm_so != (regoff_t)-1); in backref()
683 ssp = m->offp + (size_t)m->pmatch[i].rm_so; in backref()
736 offsave = m->pmatch[i].rm_so; in backref()
737 m->pmatch[i].rm_so = sp - m->offp; in backref()
[all …]
/aosp12/hardware/interfaces/keymaster/4.0/support/
H A Dkeymaster_utils.cpp204 if (match.rm_so == -1) return 0; in match_to_uint32()
206 size_t len = match.rm_eo - match.rm_so; in match_to_uint32()
207 std::string s(expression + match.rm_so, len); in match_to_uint32()
/aosp12/system/libvintf/
H A DRegex.cpp45 return status == 0 && match.rm_so == 0 && match.rm_eo >= 0 && in matches()
/aosp12/bionic/tests/
H A Dregex_test.cpp45 ASSERT_EQ(1, matches[0].rm_so); in TEST()
/aosp12/bionic/tests/headers/posix/
H A Dregex_h.c40 STRUCT_MEMBER(regmatch_t, regoff_t, rm_so); in regex_h()
/aosp12/bionic/libc/include/
H A Dregex.h57 regoff_t rm_so; /* start of match */ member