Lines Matching refs:pathbuf
77 char *pathbuf, *ptr, *end; in ZEND_INI_MH() local
96 ptr = pathbuf = estrdup(ZSTR_VAL(new_value)); in ZEND_INI_MH()
105 efree(pathbuf); in ZEND_INI_MH()
111 efree(pathbuf); in ZEND_INI_MH()
121 efree(pathbuf); in ZEND_INI_MH()
295 char *pathbuf; local
307 pathbuf = estrdup(PG(open_basedir));
309 ptr = pathbuf;
319 efree(pathbuf);
328 efree(pathbuf);
649 char *pathbuf, *ptr, *end; local
689 pathbuf = estrdup(path);
693 pathbuf = (char *) emalloc(exec_fname_length + path_length + 1 + 1);
694 memcpy(pathbuf, path, path_length);
695 pathbuf[path_length] = DEFAULT_DIR_SEPARATOR;
696 memcpy(pathbuf + path_length + 1, exec_fname, exec_fname_length);
697 pathbuf[path_length + exec_fname_length + 1] = '\0';
700 pathbuf = estrdup(path);
703 ptr = pathbuf;
716 efree(pathbuf);
722 efree(pathbuf);