Home
last modified time | relevance | path

Searched refs:label (Results 176 – 200 of 206) sorted by relevance

123456789

/PHP-5.5/ext/standard/tests/file/
H A Drename_variation13-win32.phpt107 Warning: rename(%s): The filename, directory name, or volume label syntax is incorrect. (code: 123)…
110 Warning: rename(%s): The filename, directory name, or volume label syntax is incorrect. (code: 123)…
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_fetch_field_direct_oo.phpt27 if (!$res = $mysqli->query("SELECT id AS ID, label FROM test AS TEST ORDER BY id LIMIT 1")) {
H A Dmysqli_class_mysqli_warning.phpt36 $res = $mysqli->query('INSERT INTO test(id, label) VALUES (1, "zz")');
H A Dmysqli_next_result.phpt108 …func_test_mysqli_next_result($link, "SELECT 1 AS a; INSERT INTO test(id, label) VALUES (100, 'y');…
H A Dmysqli_stmt_result_metadata.phpt30 if (!mysqli_stmt_prepare($stmt, "SELECT id, label FROM test"))
H A Dmysqli_prepare.phpt27 if (!$res = mysqli_query($link, "SELECT id, label FROM test", MYSQLI_USE_RESULT))
H A Dmysqli_class_mysqli_stmt_interface.phpt87 if (!$stmt->prepare("INSERT INTO test(id, label) VALUES (100, 'z')") ||
H A Dmysqli_fork.phpt76 …if (!$res = mysqli_query($link, "SELECT id, label FROM test ORDER BY id ASC LIMIT 3", MYSQLI_USE_R…
/PHP-5.5/ext/pcre/pcrelib/
H A Dpcre_jit_compile.c2872 label = LABEL(); in skip_char_back()
4509 label = LABEL(); in do_casefulcmp()
4541 label = LABEL(); in do_caselesscmp()
5476 label = LABEL(); in compile_char1_matchingpath()
5839 label = LABEL(); in compile_char1_matchingpath()
6186 label = LABEL(); in compile_ref_iterator_matchingpath()
7987 label = LABEL(); in compile_iterator_matchingpath()
8076 label = LABEL(); in compile_iterator_matchingpath()
8090 label = LABEL(); in compile_iterator_matchingpath()
8115 label = LABEL(); in compile_iterator_matchingpath()
[all …]
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_attr_autocommit.phpt60 $db->query("INSERT INTO test(id, label) VALUES (100, 'z')");
/PHP-5.5/ext/standard/
H A Dhttp_fopen_wrapper.c156 php_stream_context_get_option(context, wrapper->wops->label, "proxy", &tmpzval) == FAILURE || in php_stream_url_wrap_http_ex()
186 php_stream_context_get_option(context, wrapper->wops->label, "proxy", &tmpzval) == SUCCESS && in php_stream_url_wrap_http_ex()
197 …if (context && php_stream_context_get_option(context, wrapper->wops->label, "timeout", &tmpzval) =… in php_stream_url_wrap_http_ex()
H A Dstreamsfuncs.c512 add_assoc_string(return_value, "wrapper_type", (char *)stream->wrapper->wops->label, 1); in PHP_FUNCTION()
514 add_assoc_string(return_value, "stream_type", (char *)stream->ops->label, 1); in PHP_FUNCTION()
526 add_next_index_string(newval, (char *)filter->fops->label, 1); in PHP_FUNCTION()
H A Dfile.c1453 …RNING, "%s wrapper does not support renaming", wrapper->wops->label ? wrapper->wops->label : "Sour… in PHP_FUNCTION()
1492 …_CC, E_WARNING, "%s does not allow unlinking", wrapper->wops->label ? wrapper->wops->label : "Wrap… in PHP_FUNCTION()
H A Dfilters.c2164 standard_filters[i].ops->label, in PHP_MINIT_FUNCTION()
2178 php_stream_filter_unregister_factory(standard_filters[i].ops->label TSRMLS_CC); in PHP_MSHUTDOWN_FUNCTION()
/PHP-5.5/main/streams/
H A Dcast.c322 …, E_WARNING, "cannot represent a stream of type %s as a %s", stream->ops->label, cast_names[castas… in _php_stream_cast()
H A Dstreams.c87 fprintf(stderr, "forget_persistent: %s:%p\n", stream->ops->label, stream); in forget_persistent_resource_id_numbers()
300 fprintf(stderr, "stream_alloc: %s:%p persistent=%s\n", ops->label, ret, persistent_id); in _php_stream_alloc()
405 …stream->ops->label, stream, stream->orig_path, stream->in_free, _php_stream_pretty_free_options(cl… in _php_stream_free()
456 stream->ops->label, stream, stream->orig_path, preserve_handle, release_cast, in _php_stream_free()
530 …tream of type '%s' %p (path:%s) was not closed\n", __LINE__, stream->ops->label, stream, stream->o… in _php_stream_free()
/PHP-5.5/main/
H A Dphp_streams.h123 const char *label; /* label for this ops structure */ member
146 const char *label; member
/PHP-5.5/Zend/
H A Dzend_language_scanner.l188 efree(heredoc_label->label); in heredoc_label_dtor()
2148 heredoc_label->label = estrndup(s, heredoc_label->length);
2320 …oc_label->length < YYLIMIT - YYCURSOR && !memcmp(YYCURSOR, heredoc_label->label, heredoc_label->le…
2394 …oc_label->length < YYLIMIT - YYCURSOR && !memcmp(YYCURSOR, heredoc_label->label, heredoc_label->le…
H A Dzend_compile.h643 void zend_do_label(znode *label TSRMLS_DC);
644 void zend_do_goto(const znode *label TSRMLS_DC);
H A Dzend_compile.c2307 void zend_do_label(znode *label TSRMLS_DC) /* {{{ */ in zend_do_label()
2324 zval_dtor(&label->u.constant); in zend_do_label()
2332 zval *label; in zend_resolve_goto_label() local
2335 label = opline->op2.zv; in zend_resolve_goto_label()
2337 label = &CONSTANT_EX(op_array, opline->op2.constant); in zend_resolve_goto_label()
2340 …zend_hash_find(CG(context).labels, Z_STRVAL_P(label), Z_STRLEN_P(label)+1, (void**)&dest) == FAILU… in zend_resolve_goto_label()
2355 zval_dtor(label); in zend_resolve_goto_label()
2356 Z_TYPE_P(label) = IS_NULL; in zend_resolve_goto_label()
2379 ZVAL_LONG(label, distance); in zend_resolve_goto_label()
2388 void zend_do_goto(const znode *label TSRMLS_DC) /* {{{ */ in zend_do_goto()
[all …]
/PHP-5.5/
H A DREADME.STREAMS236 that can efficiently behave as fgets. The ops struct also contains a label
238 stdio implementation has a label of "STDIO" for example.
/PHP-5.5/ext/posix/
H A Dposix.c712 stream->ops->label); in php_posix_stream_get_fd()
/PHP-5.5/ext/openssl/
H A Dxp_ssl.c72 …if (stream->wrapperdata && stream->wrapper && strcasecmp(stream->wrapper->wops->label, "HTTP") == … in is_http_stream_talking_to_iis()
/PHP-5.5/ext/iconv/
H A Diconv.c2875 php_iconv_stream_filter_ops.label, in php_iconv_stream_filter_register_factory()
2887 php_iconv_stream_filter_ops.label TSRMLS_CC)) { in php_iconv_stream_filter_unregister_factory()
/PHP-5.5/ext/fileinfo/tests/
H A Dmagic2426 >4 belong x label "%.8x
5801 >0770 long >0 Sun disk label
6184 #FAT label=ACRONIS\ SZ
7243 # volume label and UUID Russell Coker
7624 >560 string x label: %.64s,
7638 >560 string x label: %.64s,
8589 >40 byte 4 directory label
11212 >1052 string \0 no label,
11386 # of the disk... (from _find_labeller in lib/label/label.c of LVM2)
16129 >4 string >\0 label:%.10s
[all …]

Completed in 165 milliseconds

123456789