Home
last modified time | relevance | path

Searched refs:entry (Results 26 – 50 of 239) sorted by relevance

12345678910

/PHP-5.5/ext/sockets/
H A Dsendrecvmsg.c91 ancillary_reg_entry entry; in init_ancillary_registry() local
98 entry.size = sizev; \ in init_ancillary_registry()
100 entry.calc_space = calc; \ in init_ancillary_registry()
101 entry.from_array = from; \ in init_ancillary_registry()
102 entry.to_array = to; \ in init_ancillary_registry()
106 (void*)&entry, sizeof(entry), NULL) in init_ancillary_registry()
144 ancillary_reg_entry *entry; in get_ancillary_reg_entry() local
158 return entry; in get_ancillary_reg_entry()
296 if (entry == NULL) { in PHP_FUNCTION()
302 if (entry->var_el_size > 0 && n > (LONG_MAX - (long)entry->size - in PHP_FUNCTION()
[all …]
/PHP-5.5/ext/zip/tests/
H A Dbug7214.phpt13 $entry = zip_read($zip);
14 $contents = zip_entry_read($entry, zip_entry_filesize($entry));
15 if (strlen($contents) == zip_entry_filesize($entry)) {
H A Dzip_entry_open.phpt11 $entry = zip_read($zip);
12 echo zip_entry_open($zip, $entry, "r") ? "OK" : "Failure";
13 zip_entry_close($entry);
H A Doo_setcomment.phpt21 $zip->addFromString('entry1.txt', 'entry #1');
22 $zip->addFromString('entry2.txt', 'entry #2');
23 $zip->addFromString('dir/entry2d.txt', 'entry #2');
24 $zip->addFromString('entry4.txt', 'entry #1');
25 $zip->addFromString('entry5.txt', 'entry #2');
H A Doo_getnameindex.phpt21 $zip->addFromString('entry1.txt', 'entry #1');
22 $zip->addFromString('entry2.txt', 'entry #2');
23 $zip->addFromString('dir/entry2d.txt', 'entry #2');
/PHP-5.5/ext/ldap/tests/
H A Dldap_next_attribute_basic.phpt16 $entry = ldap_first_entry($link, $result);
17 $attribute = ldap_first_attribute($link, $entry);
19 ldap_next_attribute($link, $entry),
20 ldap_next_attribute($link, $entry),
21 ldap_next_attribute($link, $entry)
H A Dldap_next_attribute_error.phpt16 $entry = ldap_first_entry($link, $result);
20 ldap_next_attribute($link, $entry)
34 Warning: ldap_next_attribute(): supplied resource is not a valid ldap result entry resource in %s o…
36 …alled before calling ldap_first_attribute() or no attributes found in result entry in %s on line %d
H A Dldap_get_values_len_error.phpt16 $entry = ldap_first_entry($link, $result);
20 var_dump(ldap_get_values_len($link, $entry));
21 var_dump(ldap_get_values_len($link, $entry, "weirdAttribute", "Additional data"));
23 var_dump(ldap_get_values_len($link, $entry, "inexistentAttribute"));
H A Dldap_first_entry_basic.phpt17 $entry = ldap_first_entry($link, $result),
18 ldap_get_values($link, $entry, 'sn')
30 resource(%d) of type (ldap result entry)
/PHP-5.5/ext/phar/tests/
H A D019b.phpt34 while (false !== ($entry = readdir($dir))) {
35 $entry = $base . '/' . $entry;
36 var_dump($entry);
37 var_dump(is_dir($phar . $entry));
38 if (is_dir($phar . $entry))
40 dump($phar, $entry);
H A D027.phpt33 while (false !== ($entry = readdir($dir))) {
34 $entry = $base . '/' . $entry;
35 var_dump($entry);
36 var_dump(is_dir($phar . $entry));
37 if (is_dir($phar . $entry))
39 dump($phar, $entry);
H A D027U.phpt33 while (false !== ($entry = readdir($dir))) {
34 $entry = $base . '/' . $entry;
35 var_dump($entry);
36 var_dump(is_dir($phar . $entry));
37 if (is_dir($phar . $entry))
39 dump($phar, $entry);
/PHP-5.5/ext/zip/lib/
H A Dzip_set_name.c68 if (za->entry[idx].state == ZIP_ST_UNCHANGED) in _zip_set_name()
69 za->entry[idx].state = ZIP_ST_RENAMED; in _zip_set_name()
71 free(za->entry[idx].ch_filename); in _zip_set_name()
72 za->entry[idx].ch_filename = s; in _zip_set_name()
H A Dzip_get_name.c58 if (za->entry[idx].state == ZIP_ST_DELETED) { in _zip_get_name()
62 if (za->entry[idx].ch_filename) in _zip_get_name()
63 return za->entry[idx].ch_filename; in _zip_get_name()
71 return za->cdir->entry[idx].filename; in _zip_get_name()
H A Dzip_set_file_comment.c67 free(za->entry[idx].ch_comment); in zip_set_file_comment()
68 za->entry[idx].ch_comment = tmpcom; in zip_set_file_comment()
69 za->entry[idx].ch_comment_len = len; in zip_set_file_comment()
H A Dzip_set_file_extra.c67 free(za->entry[idx].ch_extra); in zip_set_file_extra()
68 za->entry[idx].ch_extra = tmpext; in zip_set_file_extra()
69 za->entry[idx].ch_extra_len = len; in zip_set_file_extra()
H A Dzip_entry_new.c56 rentries = (struct zip_entry *)realloc(za->entry, in _zip_entry_new()
63 za->entry = rentries; in _zip_entry_new()
65 ze = za->entry+za->nentry; in _zip_entry_new()
H A Dzip_free.c64 if (za->entry) { in _zip_free()
66 _zip_entry_free(za->entry+i); in _zip_free()
68 free(za->entry); in _zip_free()
H A Dzip_replace.c75 _zip_unchange_data(za->entry+idx); in _zip_replace()
80 za->entry[idx].state = ((za->cdir == NULL || idx >= za->cdir->nentry) in _zip_replace()
82 za->entry[idx].source = source; in _zip_replace()
/PHP-5.5/sapi/nsapi/
H A Dnsapi.c405 struct pb_entry *entry; in PHP_FUNCTION() local
416 while (entry) { in PHP_FUNCTION()
418 entry=entry->next; in PHP_FUNCTION()
440 while (entry) { in PHP_FUNCTION()
442 entry=entry->next; in PHP_FUNCTION()
676 while (entry) { in sapi_nsapi_register_server_variables()
694 entry=entry->next; in sapi_nsapi_register_server_variables()
851 entry=NSG(pb)->ht[i]; in nsapi_php_ini_entries()
852 while (entry) { in nsapi_php_ini_entries()
862 entry->param->value, strlen(entry->param->value), in nsapi_php_ini_entries()
[all …]
/PHP-5.5/ext/pdo/tests/
H A Dbug_44173.phpt21 // Bug entry [1]
26 // Bug entry [2] -- 1 is PDO::FETCH_LAZY
31 // Bug entry [3]
36 // Bug entry [4]
41 // Bug entry [5]
46 // Bug entry [6]
51 // Bug entry [7]
/PHP-5.5/main/
H A Dphp_scandir.c60 …irname, struct dirent **namelist[], int (*selector) (const struct dirent *entry), int (*compare) (… in php_scandir() argument
66 char entry[sizeof(struct dirent)+MAXPATHLEN]; in php_scandir() local
67 struct dirent *dp = (struct dirent *)&entry; in php_scandir()
77 while (!php_readdir_r(dirp, (struct dirent *)entry, &dp) && dp) { in php_scandir()
/PHP-5.5/ext/standard/
H A Darray.c820 zval **entry; in PHP_FUNCTION() local
843 zval **entry; in PHP_FUNCTION() local
866 zval **entry; in PHP_FUNCTION() local
889 zval **entry; in PHP_FUNCTION() local
912 zval **entry; in PHP_FUNCTION() local
1420 *data = **entry; in PHP_FUNCTION()
1568 key = **entry; in PHP_FUNCTION()
1849 Z_ADDREF_P(entry); in php_splice()
4064 **entry, in PHP_FUNCTION() local
4094 **entry, in PHP_FUNCTION() local
[all …]
/PHP-5.5/ext/simplexml/examples/
H A Dxpath.php5 foreach($xpath_result as $entry ) {
6 print "$entry \n";
/PHP-5.5/sapi/tests/
H A Dtest006.phpt15 Content-Disposition: form-data; name="entry"
17 entry box
56 [entry] => entry box

Completed in 58 milliseconds

12345678910