Home
last modified time | relevance | path

Searched refs:label (Results 1 – 25 of 188) sorted by last modified time

12345678

/PHP-7.4/main/streams/
H A Dstreams.c79 fprintf(stderr, "forget_persistent: %s:%p\n", stream->ops->label, stream); in forget_persistent_resource_id_numbers()
290 fprintf(stderr, "stream_alloc: %s:%p persistent=%s\n", ops->label, ret, persistent_id); in _php_stream_alloc()
394 …stream->ops->label, stream, stream->orig_path, stream->in_free, _php_stream_pretty_free_options(cl… in _php_stream_free()
444 stream->ops->label, stream, stream->orig_path, preserve_handle, release_cast, in _php_stream_free()
H A Dcast.c315 …, E_WARNING, "cannot represent a stream of type %s as a %s", stream->ops->label, cast_names[castas… in _php_stream_cast()
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_jit_compile.c4234 label = LABEL(); in move_back()
7013 label = LABEL(); in do_casefulcmp()
7028 label = LABEL(); in do_casefulcmp()
7041 label = LABEL(); in do_casefulcmp()
7104 label = LABEL(); in do_caselesscmp()
7113 label = LABEL(); in do_caselesscmp()
7119 label = LABEL(); in do_caselesscmp()
8192 label = LABEL(); in compile_simple_assertion_matchingpath()
9221 label = LABEL(); in compile_ref_iterator_matchingpath()
11553 label = LABEL(); in compile_iterator_matchingpath()
[all …]
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_report.phpt247 if (!mysqli_query($link, "INSERT INTO test(id, label) VALUES ($i, 'z')"))
252 if (!$res = @mysqli_query($link, "SELECT id, label FROM test WHERE id = 1323"))
273 if (!mysqli_stmt_prepare($stmt, 'SELECT id, label FROM test'))
281 if (!mysqli_real_query($link, 'SELECT label, id FROM test'))
289 if (!mysqli_real_query($link, 'SELECT label, id FROM test'))
302 if (!mysqli_query($link, "INSERT INTO test(id, label) VALUES (100, 'z')", MYSQLI_USE_RESULT) ||
H A Dmysqli_stmt_get_result.phpt39 if (!mysqli_stmt_prepare($stmt, "SELECT id, label FROM test ORDER BY id LIMIT 2"))
64 if (!mysqli_stmt_prepare($stmt, "SELECT id, label FROM test ORDER BY id LIMIT 2"))
87 if (!mysqli_stmt_prepare($stmt, "SELECT id, label FROM test ORDER BY id LIMIT 2"))
102 if (true !== ($tmp = mysqli_stmt_bind_result($stmt, $id, $label))) {
117 if (!mysqli_stmt_prepare($stmt, "SELECT id, label FROM test ORDER BY id LIMIT 2"))
141 $label = NULL;
142 if (true !== ($tmp = mysqli_stmt_bind_result($stmt, $id, $label)))
192 ["label"]=>
198 ["label"]=>
206 ["label"]=>
[all …]
H A Dmysqli_stmt_get_result_metadata_fetch_field.phpt24 …!mysqli_stmt_prepare($stmt, "SELECT id, label, id + 1 as _id, concat(label, '_') ___label FROM te…
99 string(5) "label"
101 string(5) "label"
H A Dmysqli_stmt_reset.phpt61 …if (!mysqli_query($link, "CREATE TABLE test(id INT NOT NULL AUTO_INCREMENT, label BLOB, PRIMARY KE…
64 if (!mysqli_stmt_prepare($stmt, "INSERT INTO test(label) VALUES (?)"))
67 $label = null;
68 if (!mysqli_stmt_bind_param($stmt, "b", $label))
71 $label = 'abc';
73 if (!mysqli_stmt_send_long_data($stmt, 0, $label))
83 if (!$res = mysqli_query($link, "SELECT label FROM test"))
91 if ($row['label'] != '')
92 printf("[020] Expecting empty string, got string/%s\n", $row['label']);
H A Dmysqli_stmt_result_metadata.phpt30 if (!mysqli_stmt_prepare($stmt, "SELECT id, label FROM test"))
H A Dmysqli_stmt_send_long_data.phpt33 …if (!mysqli_query($link, sprintf("CREATE TABLE test(id INT NOT NULL AUTO_INCREMENT, label LONGBLOB…
36 if (!mysqli_stmt_prepare($stmt, "INSERT INTO test(id, label) VALUES (?, ?)"))
40 $label = null;
41 if (!mysqli_stmt_bind_param($stmt, "ib", $id, $label))
100 if (!$res = mysqli_query($link, "SELECT id, label FROM test ORDER BY id"))
112 if (empty($row['id']) || empty($row['label']) || ($row['id'] != 1))
115 if ($blob != $row['label'])
H A Dmysqli_stmt_send_long_data_packet_size_libmysql.phpt22 …if (!mysqli_query($link, sprintf("CREATE TABLE test(id INT NOT NULL AUTO_INCREMENT, label LONGBLOB…
25 if (!mysqli_stmt_prepare($stmt, "INSERT INTO test(id, label) VALUES (?, ?)"))
29 $label = null;
30 if (!mysqli_stmt_bind_param($stmt, "ib", $id, $label))
H A Dmysqli_stmt_send_long_data_packet_size_mysqlnd.phpt22 …if (!mysqli_query($link, sprintf("CREATE TABLE test(id INT NOT NULL AUTO_INCREMENT, label LONGBLOB…
25 if (!mysqli_stmt_prepare($stmt, "INSERT INTO test(id, label) VALUES (?, ?)"))
29 $label = null;
30 if (!mysqli_stmt_bind_param($stmt, "ib", $id, $label))
H A Dmysqli_stmt_store_result.phpt34 if (!mysqli_stmt_prepare($stmt, "INSERT INTO test(id, label) VALUES (100, 'z')") ||
41 if (!mysqli_stmt_prepare($stmt, 'SELECT id, label FROM test ORDER BY id') ||
51 if (!mysqli_stmt_prepare($stmt_buf, "SELECT id, label FROM test ORDER BY id") ||
55 $id = $label = $id_buf = $label_buf = null;
56 if (!mysqli_stmt_bind_result($stmt, $id, $label))
70 if ($label !== $label_buf)
72 $label, gettype($label), $label_buf, gettype($label_buf));
H A Dmysqli_store_result.phpt24 if (!$res = mysqli_real_query($link, "SELECT id, label FROM test ORDER BY id"))
44 if (!$res = mysqli_query($link, "SELECT id, label FROM test ORDER BY id"))
H A Dmysqli_store_result_copy.phpt44 printf("id = %d, label = %s\n", $row['id'], $row['label']);
205 ["label"]=>
208 id = 1, label = a
209 id = 2, label = b
210 id = 3, label = c
211 id = 4, label = d
212 id = 5, label = e
245 id = 6 label = f
246 id = 5 label = e
250 ["label"]=>
[all …]
H A Dmysqli_use_result.phpt24 if (!$res = mysqli_real_query($link, "SELECT id, label FROM test ORDER BY id"))
44 if (!$res = mysqli_query($link, "SELECT id, label FROM test ORDER BY id"))
/PHP-7.4/Zend/
H A Dzend_compile.c4432 zval *label; in zend_resolve_goto_label() local
4435 label = CT_CONSTANT_EX(op_array, opline->op2.constant); in zend_resolve_goto_label()
4437 (dest = zend_hash_find_ptr(CG(context).labels, Z_STR_P(label))) == NULL in zend_resolve_goto_label()
4445 zval_ptr_dtor_str(label); in zend_resolve_goto_label()
4446 ZVAL_NULL(label); in zend_resolve_goto_label()
4508 zend_string *label = zend_ast_get_str(ast->child[0]); in zend_compile_label() local
4519 if (!zend_hash_add_mem(CG(context).labels, label, &dest, sizeof(zend_label))) { in zend_compile_label()
4520 zend_error_noreturn(E_COMPILE_ERROR, "Label '%s' already defined", ZSTR_VAL(label)); in zend_compile_label()
4971 zend_label *label; in zend_compile_try() local
4972 ZEND_HASH_REVERSE_FOREACH_PTR(CG(context).labels, label) { in zend_compile_try()
[all …]
H A Dzend_language_scanner.l200 efree(heredoc_label->label); in heredoc_label_dtor()
1212 new_heredoc_label->label = estrndup(heredoc_label->label, heredoc_label->length); in copy_heredoc_label_stack()
2394 heredoc_label->label = estrndup(s, heredoc_label->length);
2685 …oc_label->length < YYLIMIT - YYCURSOR && !memcmp(YYCURSOR, heredoc_label->label, heredoc_label->le…
2809 …oc_label->length < YYLIMIT - YYCURSOR && !memcmp(YYCURSOR, heredoc_label->label, heredoc_label->le…
/PHP-7.4/ext/openssl/
H A Dxp_ssl.c187 strcasecmp(stream->wrapper->wops->label, "HTTP") == 0 in php_openssl_is_http_stream_talking_to_iis()
/PHP-7.4/ext/pdo_mysql/tests/
H A Dbug81037.phpt19 $sql = "SELECT id FROM test WHERE label = :par";
H A Dbug78152.phpt16 var_dump($db->exec("INSERT INTO test(id, label) VALUES (41, 'x'); INSERT INTO test_bad(id, label) V…
19 …var_dump($db->exec("INSERT INTO test(id, label) VALUES (42, 'x'); INSERT INTO test_bad(id, label) …
/PHP-7.4/ext/posix/
H A Dposix.c791 stream->ops->label); in php_posix_stream_get_fd()
/PHP-7.4/ext/standard/
H A Dhttp_fopen_wrapper.c167 (tmpzval = php_stream_context_get_option(context, wrapper->wops->label, "proxy")) == NULL || in php_stream_url_wrap_http_ex()
197 (tmpzval = php_stream_context_get_option(context, wrapper->wops->label, "proxy")) != NULL && in php_stream_url_wrap_http_ex()
208 …if (context && (tmpzval = php_stream_context_get_option(context, wrapper->wops->label, "timeout"))… in php_stream_url_wrap_http_ex()
H A Dfile.c1481 …RNING, "%s wrapper does not support renaming", wrapper->wops->label ? wrapper->wops->label : "Sour… in PHP_FUNCTION()
1522 …ULL, E_WARNING, "%s does not allow unlinking", wrapper->wops->label ? wrapper->wops->label : "Wrap… in PHP_FUNCTION()
H A Dstreamsfuncs.c528 add_assoc_string(return_value, "wrapper_type", (char *)stream->wrapper->wops->label); in PHP_FUNCTION()
530 add_assoc_string(return_value, "stream_type", (char *)stream->ops->label); in PHP_FUNCTION()
542 add_next_index_string(newval, (char *)filter->fops->label); in PHP_FUNCTION()
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_auth.c1222 return strcmp(conn->vio->data->stream->ops->label, "unix_socket") == 0; in is_secure_transport()

Completed in 108 milliseconds

12345678