Home
last modified time | relevance | path

Searched refs:what (Results 1 – 25 of 118) sorted by relevance

12345

/PHP-7.4/ext/pdo_odbc/
H A Dphp_pdo_odbc_int.h122 const char *file, *what; member
169 void pdo_odbc_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, PDO_ODBC_HSTMT statement, char *what, const c…
170 #define pdo_odbc_drv_error(what) pdo_odbc_error(dbh, NULL, SQL_NULL_HSTMT, what, __FILE__, __LINE__) argument
171 #define pdo_odbc_stmt_error(what) pdo_odbc_error(stmt->dbh, stmt, SQL_NULL_HSTMT, what, __FILE__, _… argument
172 #define pdo_odbc_doer_error(what) pdo_odbc_error(dbh, NULL, stmt, what, __FILE__, __LINE__) argument
H A Dodbc_driver.c46 einfo->what, einfo->last_error, in pdo_odbc_fetch_error_func()
57 void pdo_odbc_error(pdo_dbh_t *dbh, pdo_stmt_t *stmt, PDO_ODBC_HSTMT statement, char *what, const c… in pdo_odbc_error() argument
100 einfo->what = what; in pdo_odbc_error()
106 *pdo_err, what, einfo->last_error, einfo->last_err_msg); in pdo_odbc_error()
211 H->einfo.what = S->einfo.what; in odbc_handle_preparer()
347 H->einfo.what = "setAttribute"; in odbc_handle_set_attr()
/PHP-7.4/Zend/tests/
H A Dbug30394.phpt7 public function __get( $what )
9 return $this->_p[ $what ];
12 public function __set( $what, $value )
14 $this->_p[ $what ] = $value;
H A Dbug71529.phpt10 function out($what) {
11 var_dump($what);
12 return $what;
H A Dbug54547.phpt13 /* not exactly what the bug is about, but closely related problem: */
/PHP-7.4/scripts/dev/
H A Dcredits12 for what in ext sapi
14 file=ext/standard/credits_$what.h
30 files=`find "$what" -name CREDITS | grep -v "$what"/skeleton/CREDITS`
/PHP-7.4/ext/standard/tests/assert/
H A Dassert_error4.phpt14 var_dump($r2 = assert($sa, "Describing what was asserted"));
20 #0 %s(%d): assert('0 $ 0', 'Describing what...')
24 Describing what was asserted:"0 $ 0" in %s:%d
26 #0 %s(%d): assert('0 $ 0', 'Describing what...')
/PHP-7.4/ext/readline/
H A Dreadline.c241 char *what = NULL; in PHP_FUNCTION() local
250 if (!what) { in PHP_FUNCTION()
278 if (!strcasecmp(what,"line_buffer")) { in PHP_FUNCTION()
288 } else if (!strcasecmp(what, "point")) { in PHP_FUNCTION()
291 } else if (!strcasecmp(what, "end")) { in PHP_FUNCTION()
295 } else if (!strcasecmp(what, "mark")) { in PHP_FUNCTION()
297 } else if (!strcasecmp(what, "done")) { in PHP_FUNCTION()
304 } else if (!strcasecmp(what, "pending_input")) { in PHP_FUNCTION()
313 } else if (!strcasecmp(what, "prompt")) { in PHP_FUNCTION()
315 } else if (!strcasecmp(what, "terminal_name")) { in PHP_FUNCTION()
[all …]
/PHP-7.4/ext/reflection/tests/
H A Dbug75186.phpt11 function($what) { echo "Hello $what!\n"; },
/PHP-7.4/ext/simplexml/tests/
H A D000.phpt10 function test($what)
13 echo "===$what\n";
14 eval("var_dump(isset(\$$what));");
15 eval("var_dump((bool)\$$what);");
16 eval("if (isset(\$$what)) var_dump(count(\$$what));");
17 eval("var_dump(\$$what);");
/PHP-7.4/ext/phar/tests/cache_list/files/
H A Dphar_test.inc24 foreach(array('comp','crc32','clen','ulen','time','flags','perm','meta','cont') as $what)
26 if (isset($cont[$what]))
28 $$what = $cont[$what];
/PHP-7.4/ext/phar/tests/files/
H A Dphar_test.inc24 foreach(array('comp','crc32','clen','ulen','time','flags','perm','meta','cont') as $what)
26 if (isset($cont[$what]))
28 $$what = $cont[$what];
/PHP-7.4/ext/phar/tests/
H A Dphar_oo_006.phpt14 function __construct($what)
16 echo __METHOD__ . "($what)\n";
17 parent::__construct($what);
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_config.c78 pcre2_config(uint32_t what, void *where) in pcre2_config() argument
82 switch(what) in pcre2_config()
111 switch (what) in pcre2_config()
/PHP-7.4/ext/phar/phar/
H A Dclicommand.inc121 $what = substr($m->name, $l+strlen($sub)+1);
122 $func = $prefix . $sub . '_' . $what;
123 $what = str_replace('_', '-', $what);
125 if (!isset($a[$what])) {
126 $a[$what] = array();
128 $a[$what][$sub] = /*$m->class . '::' .*/ $func;
233 private function cli_wordwrap($what, $l, $sp)
236 $b = substr($what, 0, $l); // strip out initial $l
237 $r = substr($what, $l); // remainder
262 foreach($conf['select'] as $opt => $what) {
[all …]
/PHP-7.4/Zend/
H A Dzend_smart_string.h30 #define smart_string_appends_ex(str, src, what) \ argument
31 smart_string_appendl_ex((str), (src), strlen(src), (what))
34 #define smart_string_append_ex(str, src, what) \ argument
36 ((smart_string *)(src))->len, (what));
/PHP-7.4/ext/standard/tests/strings/
H A Dstrrpos.phpt8 var_dump(strrpos("I am what I am and that's all what I am", "am", -3));
H A Dstrripos.phpt8 var_dump(strripos("I am what I am and that's all what I am", "am", -3));
/PHP-7.4/ext/pdo_mysql/tests/
H A Dpdo_mysql_prepare_native_named_placeholder.phpt28 // do not work with MySQL native PS, but lets see what happens!
30 // I would expect to get an error message, but this is not what happens.
37 // Ok, what has happened: anything inserted into the DB?
57 // Now, what do we have in the DB?
/PHP-7.4/ext/dom/tests/
H A Dbook-not-a-schema.xsd1 Let's see what happens upon parsing a file that doesn't contain a schema.
/PHP-7.4/ext/zlib/tests/
H A D005.phpt16 Cry to relieve what's in your heart
63 Cry to relieve what's in your heart
66 Cry to relieve what's in your heart
H A D006.phpt16 Cry to relieve what's in your heart
67 Cry to relieve what's in your heart
70 Cry to relieve what's in your heart
/PHP-7.4/TSRM/
H A DTSRM.c107 # define tsrm_tls_set(what) pth_key_setdata(tls_key, (void*)(what)) argument
113 # define tsrm_tls_set(what) pthread_setspecific(tls_key, (void*)(what)) argument
118 # define tsrm_tls_set(what) st_thread_setspecific(tls_key, (void*)(what)) argument
123 # define tsrm_tls_set(what) TlsSetValue(tls_key, (void*)(what)) argument
127 # define tsrm_tls_set(what) argument
/PHP-7.4/ext/spl/tests/
H A Diterator_031.phpt41 function append(Iterator $what)
44 parent::append($what);
/PHP-7.4/ext/pcre/tests/
H A Dbug34790.phpt6 $string = 'what the word and the other word the';

Completed in 44 milliseconds

12345