Lines Matching defs:glob_expand
458 struct URLGlob *glob_expand;
470 glob_expand = calloc(1, sizeof(struct URLGlob));
471 if(!glob_expand) {
475 glob_expand->urllen = strlen(url);
476 glob_expand->glob_buffer = glob_buffer;
478 res = glob_parse(glob_expand, url, 1, &amount);
482 if(error && glob_expand->error) {
485 if(glob_expand->pos) {
487 glob_expand->error,
488 glob_expand->pos, url, (int)glob_expand->pos - 1, " ");
492 t = glob_expand->error;
498 glob_cleanup(glob_expand);
503 *glob = glob_expand;