Lines Matching refs:pathbuf
76 char *pathbuf, *ptr, *end; in ZEND_INI_MH() local
97 ptr = pathbuf = estrdup(ZSTR_VAL(new_value)); in ZEND_INI_MH()
106 efree(pathbuf); in ZEND_INI_MH()
111 efree(pathbuf); in ZEND_INI_MH()
116 efree(pathbuf); in ZEND_INI_MH()
283 char *pathbuf; local
295 pathbuf = estrdup(PG(open_basedir));
297 ptr = pathbuf;
307 efree(pathbuf);
316 efree(pathbuf);
625 char *pathbuf, *ptr, *end; local
665 pathbuf = estrdup(path);
669 pathbuf = (char *) emalloc(exec_fname_length + path_length + 1 + 1);
670 memcpy(pathbuf, path, path_length);
671 pathbuf[path_length] = DEFAULT_DIR_SEPARATOR;
672 memcpy(pathbuf + path_length + 1, exec_fname, exec_fname_length);
673 pathbuf[path_length + exec_fname_length + 1] = '\0';
676 pathbuf = estrdup(path);
679 ptr = pathbuf;
692 efree(pathbuf);
698 efree(pathbuf);