Home
last modified time | relevance | path

Searched refs:tag (Results 1 – 25 of 130) sorted by relevance

123456

/PHP-7.3/sapi/phpdbg/
H A Dphpdbg_out.h44 PHPDBG_API int phpdbg_print(int severity, int fd, const char *tag, const char *xmlfmt, const char *…
50 #define phpdbg_error(tag, xmlfmt, strfmt, ...) phpdbg_print(P_ERROR , PHPDBG_G(io)[PH… argument
51 #define phpdbg_notice(tag, xmlfmt, strfmt, ...) phpdbg_print(P_NOTICE , PHPDBG_G(io)[PH… argument
52 #define phpdbg_writeln(tag, xmlfmt, strfmt, ...) phpdbg_print(P_WRITELN, PHPDBG_G(io)[PH… argument
53 #define phpdbg_write(tag, xmlfmt, strfmt, ...) phpdbg_print(P_WRITE , PHPDBG_G(io)[PH… argument
59 #define phpdbg_error_ex(out, tag, xmlfmt, strfmt, ...) phpdbg_print(P_ERROR , out, tag, xmlf… argument
60 #define phpdbg_notice_ex(out, tag, xmlfmt, strfmt, ...) phpdbg_print(P_NOTICE , out, tag, xmlf… argument
61 #define phpdbg_writeln_ex(out, tag, xmlfmt, strfmt, ...) phpdbg_print(P_WRITELN, out, tag, xmlf… argument
62 #define phpdbg_write_ex(out, tag, xmlfmt, strfmt, ...) phpdbg_print(P_WRITE , out, tag, xmlf… argument
85 PHPDBG_API int phpdbg_output_err_buf(const char *tag, const char *xmlfmt, const char *strfmt, ...);
/PHP-7.3/ext/exif/tests/
H A Dbug76557.phpt11 Warning: exif_read_data(bug76557.jpg): Process tag(x010F=Make ): Illegal format code 0x3030, …
13 Warning: exif_read_data(bug76557.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030, …
15 Warning: exif_read_data(bug76557.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030, …
17 Warning: exif_read_data(bug76557.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030, …
19 Warning: exif_read_data(bug76557.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030, …
21 Warning: exif_read_data(bug76557.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030, …
23 Warning: exif_read_data(bug76557.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030, …
25 Warning: exif_read_data(bug76557.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030, …
27 Warning: exif_read_data(bug76557.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030, …
29 Warning: exif_read_data(bug76557.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030, …
[all …]
H A Dbug72094.phpt14 Warning: exif_read_data(bug72094_1.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030…
16 Warning: exif_read_data(bug72094_1.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030…
18 Warning: exif_read_data(bug72094_1.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030…
20 Warning: exif_read_data(bug72094_1.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030…
22 Warning: exif_read_data(bug72094_1.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030…
24 Warning: exif_read_data(bug72094_1.jpg): Process tag(x8298=Copyright ): Illegal format code 0x3030…
38 Warning: exif_read_data(bug72094_3.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030…
40 Warning: exif_read_data(bug72094_3.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030…
42 Warning: exif_read_data(bug72094_3.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030…
44 Warning: exif_read_data(bug72094_3.jpg): Process tag(x3030=UndefinedTa): Illegal format code 0x3030…
[all …]
H A Dbug54002.phpt2 Bug #54002 (crash on crafted tag)
14 Warning: exif_read_data(bug54002_1.jpeg): Process tag(x0205=UndefinedTa): Illegal byte_count in %sb…
16 Warning: exif_read_data(bug54002_2.jpeg): Process tag(x0205=UndefinedTa): Illegal byte_count in %sb…
H A Dbug73737.phpt2 Bug #73737 (Crash when parsing a tag format)
11 Warning: exif_thumbnail(bug73737.tiff): Process tag(x0100=ImageWidth ): Cannot be empty in %s on li…
H A Dtag_with_illegal_zero_components.phpt2 OSS-Fuzz #17163: Out-of-bounds read due to tag with zero components
16 Warning: exif_read_data(tag_with_illegal_zero_components.jpeg): Process tag(x0202=JPEGInterch): Can…
/PHP-7.3/ext/openssl/tests/
H A Dopenssl_encrypt_ccm.phpt20 $test['iv'], $tag, $test['aad'], strlen($test['tag']));
22 var_dump($test['tag'] === $tag);
27 var_dump(openssl_encrypt('data', $method, 'password', 0, NULL, $tag, ''));
29 // Test setting different IV length and tag length
30 var_dump(openssl_encrypt('data', $method, 'password', 0, str_repeat('x', 10), $tag, '', 14));
31 var_dump(strlen($tag));
33 // Test setting invalid tag length
34 var_dump(openssl_encrypt('data', $method, 'password', 0, str_repeat('x', 16), $tag, '', 1024));
H A Dopenssl_encrypt_gcm.phpt19 $test['iv'], $tag, $test['aad'], strlen($test['tag']));
21 var_dump($test['tag'] === $tag);
25 var_dump(openssl_encrypt('data', $method, 'password', 0, NULL, $tag, ''));
27 // Failing to retrieve tag (max is 16 bytes)
28 var_dump(openssl_encrypt('data', $method, 'password', 0, str_repeat('x', 32), $tag, '', 20));
30 // Failing when no tag supplied
56 Warning: openssl_encrypt(): Retrieving verification tag failed in %s on line %d
59 Warning: openssl_encrypt(): A tag should be provided when using AEAD mode in %s on line %d
H A Dcipher_tests.inc8 'tag' => '1fc64fbfaccd',
17 'tag' => '484392fbc1b09951',
31 'tag' => '2024931d73bca480c24a24ece6b6c2bf',
42 'tag' => '58e2fccefa7e3061367f1d57a4e7455a',
49 'tag' => 'ab6e47d42cec13bdf53a67b21257bddf',
56 'tag' => '4d5c2af327cd64a62cf35abd2ba6fab4',
70 'tag' => '5bc94fbc3221a5db94fae95ae7121a47',
84 'tag' => '3612d2e79e3b0785561be14aaca2fccb',
101 'tag' => '619cc5aefffe0bfa462af43c1699d050',
H A Dopenssl_decrypt_gcm.phpt19 $test['iv'], $test['tag'], $test['aad']);
25 NULL, $test['tag'], $test['aad']));
28 $test['iv'], $test['tag']));
29 // failed because wrong tag
H A Dopenssl_decrypt_ccm.phpt20 $test['iv'], $test['tag'], $test['aad']);
27 NULL, $test['tag'], $test['aad']));
30 $test['iv'], $test['tag']));
31 // failed because wrong tag
H A Dbug74099.phpt14 $tag = null;
16 $ciphertext = openssl_encrypt($plaintext, 'aes-256-gcm', $key, \OPENSSL_RAW_DATA, $iv, $tag, $aad);
/PHP-7.3/ext/fileinfo/libmagic/
H A Dder.c143 uint32_t tag; in gettag() local
148 tag = c[(*p)++] & 0x1f; in gettag()
150 if (tag != 0x1f) in gettag()
151 return tag; in gettag()
157 tag = tag * 128 + c[(*p)++] - 0x80; in gettag()
161 return tag; in gettag()
212 if (tag < DER_TAG_LONG) in der_tag()
225 switch (tag) { in der_data()
280 uint32_t tag, tlen; in der_cmp() local
284 if (tag == DER_BAD) in der_cmp()
[all …]
/PHP-7.3/ext/enchant/tests/
H A Ddict_quick_check.phpt11 $tag = 'en_US';
13 if (!enchant_broker_dict_exists($r, $tag))
14 die('skip, no dictionary for ' . $tag . ' tag');
19 $tag = 'en_US';
22 $d = enchant_broker_request_dict($r, $tag);
/PHP-7.3/ext/xml/tests/
H A Dxml_parse_into_struct_variation.phpt63 [tag] => MAIN
70 [tag] => PARA
77 [tag] => NOTE
85 [tag] => PARA
92 [tag] => PARA
99 [tag] => NOTE
107 [tag] => PARA
114 [tag] => MAIN
H A Dxml007.phpt13 function startHandler($parser,$tag,$attr)
15 var_dump($tag,$attr);
18 function endHandler($parser,$tag)
20 var_dump($tag);
39 ["tag"]=>
H A Dbug50576.phpt66 [tag] => LISTOFAWARDS
80 [tag] => COUNT
89 [tag] => TOTAL
97 [tag] => COUNT
106 [tag] => COUNT
113 [tag] => LISTOFAWARDS
122 [tag] => LISTOFAWARDS
H A Dxml011.phpt39 [tag] => TEXT
47 [tag] => B
54 [tag] => TEXT
62 [tag] => TEXT
/PHP-7.3/ext/standard/tests/image/
H A Diptcembed_002.phpt62 foreach ($tags as $tag => $string) { $rec=$tag[0]; $tag = substr($tag, 2); $iptc .= iptc_make_tag($…
89 foreach ($tags as $tag => $string) {
90 #check if tag exists
91 if (!isset($iptc_data_from_created_image[$tag])) {
92 echo "error iptc tag $tag not found".PHP_EOL;
96 if ($iptc_data_from_created_image[$tag][0]!=$string) {
97 … echo "error tag $tag : bad value ($string != ".$iptc_data_from_created_image[$tag][0].")".PHP_EOL;
/PHP-7.3/ext/dom/tests/
H A DDOMDocument_load_error1.phpt4 This test verifies the method detects an opening and ending tag mismatch
22 Warning: DOMDocument::load%r(XML){0,1}%r(): Opening and ending tag mismatch: title line 5 and book …
24 Warning: DOMDocument::load%r(XML){0,1}%r(): %rexpected '>'|Opening and ending tag mismatch: book li…
26 Warning: DOMDocument::load%r(XML){0,1}%r(): %rPremature end of data in tag books|EndTag: '<\/' not …
H A DDOMDocument_loadXML_error1.phpt4 This test verifies the method detects an opening and ending tag mismatch
22 Warning: DOMDocument::load%r(XML){0,1}%r(): Opening and ending tag mismatch: title line 5 and book …
24 Warning: DOMDocument::load%r(XML){0,1}%r(): %rexpected '>'|Opening and ending tag mismatch: book li…
26 Warning: DOMDocument::load%r(XML){0,1}%r(): %rPremature end of data in tag books|EndTag: '<\/' not …
H A Dbug74004.phpt9 $doc->loadHTML("<tag-throw></tag-throw>",LIBXML_NOERROR);
/PHP-7.3/ext/mbstring/oniguruma/doc/
H A DCALLOUTS.API.ja235 tag文字列に使用できる文字: _ A-Z a-z 0-9 (* 先頭の文字: _ A-Z a-z)
240 その呼び出しにtagが割り当てられていれば1を返す、そうでなければ0を返す。
245 その呼び出しに対するtag文字列(NULL終端あり)の先頭アドレスを返す。
250 その呼び出しに対するtag文字列の終端アドレスを返す。
253 # int onig_get_callout_num_by_tag(OnigRegex reg, const OnigUChar* tag, const OnigUChar* tag_end)
255 そのtagに対する呼び出し番号を返す。
328 # int onig_get_callout_data_by_tag(OnigRegex reg, OnigMatchParam* mp, const OnigUChar* tag, const O…
330 tag/slotによって示された呼び出しスロットに対するデータの値/型を返す。
345 # int onig_set_callout_data_by_tag(OnigRegex reg, OnigMatchParam* mp, const OnigUChar* tag, const O…
347 tag/slotによって示された呼び出しスロットに対する値/型をセットする。。
/PHP-7.3/tests/lang/
H A Dshort_tags.001.phpt7 echo "Used a short tag\n";
11 Used a short tag
H A Dshort_tags.002.phpt7 echo "Used a short tag\n";
12 echo "Used a short tag\n";

Completed in 133 milliseconds

123456