Home
last modified time | relevance | path

Searched refs:IS_ESC (Results 1 – 2 of 2) sorted by relevance

/external/boringssl/src/crypto/conf/
Dconf.c228 if (IS_ESC(conf, *from)) { in str_copy()
255 } else if (IS_ESC(conf, *from)) { in str_copy()
435 if (IS_ESC(conf, *p)) { in eat_alpha_numeric()
451 if (IS_ESC(conf, *p)) { in scan_quote()
511 if (IS_ESC(conf, *p)) { in clear_comments()
596 if (IS_ESC(conf, p[0]) && ((bufnum <= 1) || !IS_ESC(conf, p[-1]))) { in def_load_bio()
Dconf_def.h84 #define IS_ESC(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_ESC) macro