Home
last modified time | relevance | path

Searched refs:endstr (Results 1 – 7 of 7) sorted by relevance

/third_party/musl/src/regex/
Dfnmatch.c166 const char *s, *stail, *endstr; in fnmatch_internal() local
226 endstr = str + n; in fnmatch_internal()
232 for (s=endstr; s>str && tailcnt; tailcnt--) { in fnmatch_internal()
244 if ((k = str_next(s, endstr-s, &sinc)) <= 0) { in fnmatch_internal()
259 endstr = stail; in fnmatch_internal()
275 k = str_next(s, endstr-s, &sinc); in fnmatch_internal()
290 k = str_next(str, endstr-str, &sinc); in fnmatch_internal()
292 else for (str++; str_next(str, endstr-str, &sinc)<0; str++); in fnmatch_internal()
/third_party/grpc/third_party/upb/upb/
Dsink.h161 func *endstr; in upb_sink_endstr() local
164 endstr = (func*)upb_handlers_gethandler(s.handlers, sel, &hd); in upb_sink_endstr()
166 if (!endstr) return true; in upb_sink_endstr()
167 return endstr(s.closure, hd); in upb_sink_endstr()
Dhandlers.c200 SETTER(endstr, upb_endfield_handlerfunc*, UPB_HANDLER_ENDSTR) in SETTER()
/third_party/openssl/crypto/pem/
Dpem_lib.c720 static const char endstr[] = "-----END "; variable
723 #define ENDLEN ((int)(sizeof(endstr) - 1))
828 if (!strncmp(linebuf, endstr, ENDLEN) || got_header == IN_HEADER) in get_header_and_data()
851 if (strncmp(linebuf, endstr, ENDLEN) == 0) { in get_header_and_data()
/third_party/grpc/third_party/upb/tests/pb/
Dtest_decoder.cc293 bool endstr(int* depth, const uint32_t* num) { in endstr() function
393 ASSERT(h.SetEndStringHandler(f, UpbBind(endstr, new uint32_t(num)))); in reg_str()
/third_party/protobuf/ruby/ext/google/protobuf_c/
Dupb.h5357 func *endstr;
5360 endstr = (func*)upb_handlers_gethandler(s.handlers, sel, &hd);
5362 if (!endstr) return true;
5363 return endstr(s.closure, hd);
Dupb.c5628 SETTER(endstr, upb_endfield_handlerfunc*, UPB_HANDLER_ENDSTR) in SETTER()