Home
last modified time | relevance | path

Searched refs:bhnd_nv_isspace (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/dev/bhnd/nvram/
H A Dbhnd_nvram_data_btxt.c117 if (!bhnd_nv_isspace(c) && !bhnd_nv_isalpha(c) && c != '#') in bhnd_nvram_btxt_probe()
188 while (bufpos < buflen && bhnd_nv_isspace(buf[bufpos])) in bhnd_nvram_btxt_getvar_direct()
330 while (vlen > 0 && bhnd_nv_isspace(buf[bufpos+vlen-1])) in bhnd_nvram_btxt_getvar_direct()
823 if (!bhnd_nv_isspace(c)) in bhnd_nvram_btxt_entry_len()
892 if (bhnd_nv_isspace(c)) { in bhnd_nvram_btxt_seek_next()
H A Dbhnd_nvram_subr.c745 if (!bhnd_nv_isspace(str[*nbytes])) in bhnd_nvram_parse_int()
1058 for (sp = *inp; (size_t)(sp-*inp) < ilen && bhnd_nv_isspace(*sp); sp++) in bhnd_nvram_parse_field()
1096 if (!bhnd_nv_isspace(*(sp + plen - 1))) in bhnd_nvram_trim_field()
H A Dbhnd_nvram_private.h70 #define bhnd_nv_isspace(c) isspace(c) macro
146 #define bhnd_nv_isspace(c) ((c) == ' ' || ((c) >= '\t' && (c) <= '\r')) macro