Home
last modified time | relevance | path

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

/external/boringssl/src/crypto/conf/
Dconf.c221 if (IS_ESC(conf, *from)) { in str_copy()
248 } else if (IS_ESC(conf, *from)) { in str_copy()
428 if (IS_ESC(conf, *p)) { in eat_alpha_numeric()
444 if (IS_ESC(conf, *p)) { in scan_quote()
504 if (IS_ESC(conf, *p)) { in clear_comments()
589 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