Home
last modified time | relevance | path

Searched refs:path (Results 26 – 50 of 841) sorted by last modified time

12345678910>>...34

/php-src/ext/pdo_pgsql/
H A Dconfig.m45 the path to pg_config])])
52 AC_MSG_ERROR(Cannot find libpq-fe.h. Please specify correct PostgreSQL installation path)
56 AC_MSG_ERROR(Cannot find libpq.so. Please specify correct PostgreSQL installation path)
/php-src/main/
H A Dfastcgi.c642 int fcgi_listen(const char *path, int backlog) in fcgi_listen() argument
659 if ((s = strchr(path, ':'))) { in fcgi_listen()
661 if (port != 0 && (s-path) < MAXPATHLEN) { in fcgi_listen()
662 strncpy(host, path, s-path); in fcgi_listen()
663 host[s-path] = '\0'; in fcgi_listen()
666 } else if (is_port_number(path)) { in fcgi_listen()
667 port = atoi(path); in fcgi_listen()
714 namedPipe = CreateNamedPipe(path, in fcgi_listen()
730 size_t path_len = strlen(path); in fcgi_listen()
744 unlink(path); in fcgi_listen()
[all …]
/php-src/ext/dom/
H A Dphp_dom_arginfo.h993 ZEND_ARG_TYPE_INFO(0, path, IS_STRING, 0)
1028 ZEND_ARG_TYPE_INFO(0, path, IS_STRING, 0)
H A Dphp_dom.stub.php1582 …public static function createFromFile(string $path, int $options = 0, ?string $overrideEncoding = … argument
1601 …public static function createFromFile(string $path, int $options = 0, ?string $overrideEncoding = … argument
/php-src/ext/pdo_dblib/
H A Dconfig.m413 dnl FreeTDS must be on the default system include/library path.
/php-src/ext/dba/tests/
H A Dvalue_errors_open.phpt124 dba_open(): Argument #1 ($path) cannot be empty
136 dba_popen(): Argument #1 ($path) cannot be empty
/php-src/ext/dba/
H A Ddba.stub.php26 …function dba_popen(string $path, string $mode, ?string $handler = null, int $permission = 0o644, i… argument
28 …function dba_open(string $path, string $mode, ?string $handler = null, int $permission = 0o644, in… argument
H A Ddba_arginfo.h5 ZEND_ARG_TYPE_INFO(0, path, IS_STRING, 0)
H A Ddba.c251 ZEND_ASSERT(info->path); in dba_close_info()
252 zend_string_release_ex(info->path, info->flags&DBA_PERSISTENT); in dba_close_info()
253 info->path = NULL; in dba_close_info()
493 static dba_info *php_dba_find(const zend_string *path) in php_dba_find() argument
499 if (info && zend_string_equals(path, info->path)) { in php_dba_find()
537 zend_string *path; in php_dba_open() local
550 if (ZSTR_LEN(path) == 0) { in php_dba_open()
794 connection->info->path = php_dba_zend_string_dup_safe(path, persistent); in php_dba_open()
816 if ((other = php_dba_find(connection->info->path)) != NULL) { in php_dba_open()
830 lock_name = ZSTR_VAL(path); in php_dba_open()
[all …]
H A Dphp_dba.h41 zend_string *path; member
/php-src/Zend/
H A Dzend_compile.h948 ZEND_API size_t zend_dirname(char *path, size_t len);
H A Dzend_call_stack.c695 char path[PATH_MAX]; in zend_call_stack_get_solaris_proc_maps() local
708 snprintf(path, sizeof(path), "/proc/%d/map", (int)pid); in zend_call_stack_get_solaris_proc_maps()
710 if ((fd = open(path, O_RDONLY)) == -1) { in zend_call_stack_get_solaris_proc_maps()
/php-src/ext/session/tests/
H A Dsession_basic2.phpt25 $path = __DIR__;
26 var_dump(session_save_path($path));
H A Dsession_basic3.phpt82 <a href="//php.net/some/path/file.php">test</a>
102 <a href="/path">test</a>
103 <a href="/path/">test</a>
104 <a href="/path/?foo=var">test</a>
106 <a href="../path">test</a>
107 <a href="../path/">test</a>
108 <a href="../path/?foo=var">test</a>
111 <a href="/path/#bar">test</a>
112 <a href="/path/?foo=var#bar">test</a>
114 <a href="../path/#bar">test</a>
[all …]
H A Dsession_basic5.phpt33 <a href="/path">test</a>
34 <a href="/path/">test</a>
35 <a href="/path/?foo=var">test</a>
37 <a href="../path">test</a>
38 <a href="../path/">test</a>
39 <a href="../path/?foo=var">test</a>
42 <a href="/path/#bar">test</a>
43 <a href="/path/?foo=var#bar">test</a>
45 <a href="../path/#bar">test</a>
46 <a href="../path/?foo=var#bar">test</a>
[all …]
/php-src/sapi/cgi/
H A Dcgi_main.c213 #define TRANSLATE_SLASHES(path) \ argument
215 char *tmp = path; \
222 #define TRANSLATE_SLASHES(path)
811 path = real_path;
817 s2 = path;
820 s1 = path;
891 char *path; local
899 path = emalloc(path_len + 2);
907 path[path_len] = 0;
942 efree(path);
[all …]
/php-src/ext/opcache/jit/ir/
H A Dir_aarch64.dasc119 /* fast path: power of two */
/php-src/ext/dom/tests/modern/xml/
H A DXMLDocument_fromFile_03.phpt16 Dom\XMLDocument::createFromFile(): Argument #1 ($path) must not contain percent-encoded NUL bytes
/php-src/ext/dom/tests/modern/html/serializer/
H A DHTMLDocument_serialize_failing_stream.phpt12 public function stream_open($path, $mode, $options, &$opened_path) {
/php-src/ext/dom/tests/modern/html/interactions/
H A DHTMLDocument_documentURI.phpt21 public function stream_open($path, $mode, $options, &$opened_path) {
H A DHTMLDocument_saveHTMLFile_empty_path.phpt2 Dom\HTMLDocument::saveHtmlFile() empty path
/php-src/ext/dom/tests/modern/html/parser/
H A DHTMLDocument_fromFile_nul_terminator_cases_path.phpt2 Dom\HTMLDocument::createFromFile() - NUL terminator cases path
21 Dom\HTMLDocument::createFromFile(): Argument #1 ($path) must not contain any null bytes
22 Dom\HTMLDocument::createFromFile(): Argument #1 ($path) must not contain percent-encoded NUL bytes
H A DHTMLDocument_fromFile_with_failing_stream_wrapper.phpt12 public function stream_open($path, $mode, $options, &$opened_path) {
H A DHTMLDocument_fromFile_empty_path.phpt2 Dom\HTMLDocument::createFromFile() - empty path
H A DHTMLDocument_fromFile_with_working_stream_wrapper.phpt13 public function stream_open($path, $mode, $options, &$opened_path) {
14 $this->data = substr($path, 6);

Completed in 122 milliseconds

12345678910>>...34