Lines Matching refs:str
18 * Allocate a new context, initialized from str. There must be 3 or
22 context_t context_new(const char *str)
40 for (count = 0, p = str; *p; p++) {
63 for (i = 0, tok = str; *tok; i++) {
145 static int set_comp(context_private_t * n, int idx, const char *str)
149 if (str) {
150 for (p = str; *p; p++) {
158 t = strdup(str);
180 int context_ ## name ## _set(context_t context, const char* str) \
182 return set_comp(context->ptr,tag,str);\