Lines Matching refs:ftext
375 char * ftext = in file_preset() local
378 if (TEXT_MMAP_FAILED_ADDR(ftext)) in file_preset()
402 ftext = SPN_WHITESPACE_CHARS(ftext); in file_preset()
404 if (IS_VAR_FIRST_CHAR(*ftext)) { in file_preset()
405 ftext = handle_cfg(opts, &optst, ftext, dir); in file_preset()
407 } else switch (*ftext) { in file_preset()
409 if (IS_VAR_FIRST_CHAR(ftext[1])) in file_preset()
410 ftext = handle_struct(opts, &optst, ftext, dir); in file_preset()
412 else switch (ftext[1]) { in file_preset()
414 ftext = handle_directive(opts, ftext); in file_preset()
418 ftext = handle_comment(ftext); in file_preset()
422 ftext = strchr(ftext + 2, '>'); in file_preset()
423 if (ftext++ != NULL) in file_preset()
428 ftext = NULL; in file_preset()
430 if (ftext == NULL) in file_preset()
435 ftext = handle_section(opts, ftext); in file_preset()
439 ftext = strchr(ftext + 1, NL); in file_preset()
445 } while (ftext != NULL); in file_preset()