Home
last modified time | relevance | path

Searched refs:upb_ok (Results 1 – 6 of 6) sorted by relevance

/external/protobuf/ruby/ext/google/protobuf_c/
Dprotobuf.c59 if (!upb_ok(status)) { in check_upb_status()
Dupb.c420 assert(!(s && upb_ok(s))); in _upb_def_validate()
2551 if (!upb_ok(&h->status_)) { in upb_handlers_freeze()
3653 assert(!s || ret == upb_ok(s)); in upb_refcounted_freeze()
3903 if (!upb_ok(s)) return false; in upb_resolve_dfs()
4055 if (!upb_ok(status)) goto err; in symtab_add()
4168 assert(!upb_ok(status)); in symtab_add()
5196 bool upb_ok(const upb_status *status) { return status->ok_; } in upb_ok() function
7084 assert(upb_ok(upb_handlers_status(h))); in reghandlers()
11412 if (!upb_ok(&status)) { in end_object()
Dupb.h387 bool upb_ok(const upb_status *status);
409 bool ok() const { return upb_ok(this); }
/external/protobuf/php/ext/google/protobuf/
Ddef.c8 if (!upb_ok(status)) { in check_upb_status()
Dupb.c367 assert(!(s && ret != upb_ok(s))); in upb_def_freeze()
374 assert(!(s && upb_ok(s))); in upb_def_freeze()
2398 if (!upb_ok(&h->status_)) { in upb_handlers_freeze()
3743 if (!upb_ok(s)) return false; in upb_resolve_dfs()
3886 if (!upb_ok(status)) goto err; in upb_symtab_add()
3976 assert(!upb_ok(status)); in upb_symtab_add()
4932 bool upb_ok(const upb_status *status) { return status->ok_; } in upb_ok() function
10711 if (!upb_ok(&status)) { in end_object()
Dupb.h524 bool upb_ok(const upb_status *status);
545 inline bool Status::ok() const { return upb_ok(this); } in ok()