Home
last modified time | relevance | path

Searched refs:entry (Results 51 – 75 of 243) sorted by relevance

12345678910

/PHP-5.6/ext/zip/tests/
H A Dzip_entry_name.phpt13 while ($entry = zip_read($zip)) {
14 echo zip_entry_name($entry)."\n";
H A Doo_rename.phpt21 $zip->addFromString('entry1.txt', 'entry #1');
22 $zip->addFromString('entry2.txt', 'entry #2');
23 $zip->addFromString('dir/entry2.txt', 'entry #2');
H A Doo_delete.phpt20 $zip->addFromString('entry1.txt', 'entry #1');
21 $zip->addFromString('entry2.txt', 'entry #2');
22 $zip->addFromString('dir/entry2.txt', 'entry #2');
/PHP-5.6/ext/standard/tests/dir/
H A Dreaddir_variation2.phpt6 * Description: Read directory entry from dir_handle
32 foreach($entries as $entry) {
33 var_dump($entry);
/PHP-5.6/ext/phar/tests/
H A Dpharfileinfo_setmetadata.phpt47 Phar entry is a temporary directory (not an actual entry in the archive), cannot set metadata
48 Phar entry is a temporary directory (not an actual entry in the archive), cannot delete metadata
H A Dphar_dotted_path.phpt27 foreach ($phar as $entry) {
28 echo file_get_contents($entry)."\n";
/PHP-5.6/ext/pcre/pcrelib/
H A Dpcre_get.c119 pcre_uchar *entry = nametable + entrysize*mid; in pcre_get_stringnumber() local
121 (pcre_uchar *)(entry + IMM2_SIZE)); in pcre_get_stringnumber()
122 if (c == 0) return GET2(entry, 0); in pcre_get_stringnumber()
203 pcre_uchar *entry = nametable + entrysize*mid; in pcre_get_stringtable_entries() local
205 (pcre_uchar *)(entry + IMM2_SIZE)); in pcre_get_stringtable_entries()
208 pcre_uchar *first = entry; in pcre_get_stringtable_entries()
209 pcre_uchar *last = entry; in pcre_get_stringtable_entries()
272 pcre_uchar *entry; in get_first_set() local
295 for (entry = (pcre_uchar *)first; entry <= (pcre_uchar *)last; entry += entrysize) in get_first_set()
297 int n = GET2(entry, 0); in get_first_set()
[all …]
/PHP-5.6/ext/zip/lib/
H A Dzip_dirent.c62 free(cd->entry); in _zip_cdir_free()
72 struct zip_entry *entry; in _zip_cdir_grow() local
84 realloc(cd->entry, sizeof(*(cd->entry))*(size_t)nentry))) == NULL) { in _zip_cdir_grow()
90 _zip_entry_init(entry+i); in _zip_cdir_grow()
93 cd->entry = entry; in _zip_cdir_grow()
112 cd->entry = NULL; in _zip_cdir_new()
113 …lse if (nentry > ((size_t)-1)/sizeof(*(cd->entry)) || (cd->entry=(struct zip_entry *)malloc(sizeof… in _zip_cdir_new()
120 _zip_entry_init(cd->entry+i); in _zip_cdir_new()
150 struct zip_entry *entry = za->entry+filelist[i].idx; in _zip_cdir_write() local
152 …if ((ret=_zip_dirent_write(entry->changes ? entry->changes : entry->orig, fp, ZIP_FL_CENTRAL, &za-… in _zip_cdir_write()
[all …]
H A Dzip_open.c159 za->entry = cdir->entry; in _zip_open()
285 if ((cd->entry[i].orig=_zip_dirent_new()) == NULL in _zip_readcdir()
317 max = cd->entry[0].orig->offset; in _zip_checkcons()
318 min = cd->entry[0].orig->offset; in _zip_checkcons()
324 if (cd->entry[i].orig->offset < min) in _zip_checkcons()
325 min = cd->entry[i].orig->offset; in _zip_checkcons()
331 j = cd->entry[i].orig->offset + cd->entry[i].orig->comp_size in _zip_checkcons()
340 if (fseeko(fp, (off_t)cd->entry[i].orig->offset, SEEK_SET) != 0) { in _zip_checkcons()
348 if (_zip_headercomp(cd->entry[i].orig, &temp) != 0) { in _zip_checkcons()
354 …cd->entry[i].orig->extra_fields = _zip_ef_merge(cd->entry[i].orig->extra_fields, temp.extra_fields… in _zip_checkcons()
[all …]
H A Dzip_stat_index.c55 && ZIP_ENTRY_DATA_CHANGED(za->entry+index)) { in zip_stat_index()
56 if (zip_source_stat(za->entry[index].source, st) < 0) { in zip_stat_index()
/PHP-5.6/ext/oci8/
H A Doci8_statement.c991 zval **entry; in php_oci_bind_post_exec() local
1002 zval_dtor(*entry); in php_oci_bind_post_exec()
1013 zval_dtor(*entry); in php_oci_bind_post_exec()
1030 zval_dtor(*entry); in php_oci_bind_post_exec()
1035 ZVAL_NULL(*entry); in php_oci_bind_post_exec()
1065 zval_dtor(*entry); in php_oci_bind_post_exec()
1643 zval **entry; in php_oci_bind_array_helper_string() local
1690 element_length = (maxlength > Z_STRLEN_PP(entry)) ? Z_STRLEN_PP(entry) : maxlength; in php_oci_bind_array_helper_string()
1713 zval **entry; in php_oci_bind_array_helper_number() local
1752 zval **entry; in php_oci_bind_array_helper_double() local
[all …]
/PHP-5.6/ext/mysqli/tests/
H A Dmysqli_phpinfo.phpt64 foreach ($expected as $k => $entry)
65 if (!stristr($phpinfo, $entry))
66 printf("[010] Could not find entry for '%s'\n", $entry);
/PHP-5.6/ext/phar/
H A Dshortarc.php245 static function extractFile($path, $entry, $fp) argument
248 $c = $entry[2];
260 if ($entry[4] & self::GZ) {
262 } elseif ($entry[4] & self::BZ2) {
266 if (strlen($data) != $entry[0]) {
271 if ($entry[3] != sprintf("%u", crc32((binary)$data) & 0xffffffff)) {
/PHP-5.6/ext/phar/phar/
H A Dpharcommand.inc82 'typ' => 'entry',
664 * @param string $entry The entry point
671 $entry = str_replace('//', '/', $entry);
673 $entry = substr($entry, $p+1);
680 echo "$entry\n";
958 unset($phar[$entry]);
1140 if (isset($entry)) {
1249 if (isset($entry)) {
1273 if (isset($entry)) {
1322 if (isset($entry)) {
[all …]
/PHP-5.6/ext/ldap/tests/
H A Dldap_mod_add_error.phpt29 $entry = array(
38 ldap_add($link, "dc=my-domain,$base", $entry);
40 $entry2 = $entry;
45 $entry2 = $entry;
H A Dldap_modify_error.phpt29 $entry = array(
38 ldap_add($link, "dc=my-domain,$base", $entry);
40 $entry2 = $entry;
45 $entry2 = $entry;
H A Dldap_first_attribute_basic.phpt16 $entry = ldap_first_entry($link, $result);
18 ldap_first_attribute($link, $entry)
H A Dldap_get_dn_basic.phpt16 $entry = ldap_first_entry($link, $result);
18 ldap_get_dn($link, $entry)
H A Dldap_get_values_len_basic.phpt16 $entry = ldap_first_entry($link, $result);
18 ldap_get_values_len($link, $entry, "o")
H A Dldap_mod_del_basic.phpt16 $entry = array(
21 ldap_mod_del($link, "cn=userA,$base", $entry),
H A Dldap_get_attributes_basic.phpt16 $entry = ldap_first_entry($link, $result);
18 ldap_get_attributes($link, $entry)
H A Dldap_mod_replace_basic.phpt16 $entry = array(
21 ldap_mod_replace($link, "cn=userA,$base", $entry),
/PHP-5.6/sapi/litespeed/
H A Dlsapi_main.c129 Z_STRVAL_P(entry) = zend_strndup(Z_STRVAL_P(entry), Z_STRLEN_P(entry))
133 zval *tmp, *entry; in sapi_lsapi_ini_defaults() local
753 user_config_cache_entry *entry = in user_config_cache_entry_dtor() local
761 free(entry); in user_config_cache_entry_dtor()
839 user_config_cache_entry *entry; member
947 ctx->entry = *entry_pp; in lsapi_activate_user_ini_mk_user_config()
949 ctx->entry = NULL; in lsapi_activate_user_ini_mk_user_config()
953 if (ctx->entry) { in lsapi_activate_user_ini_mk_user_config()
958 ctx->entry->expires = 0; in lsapi_activate_user_ini_mk_user_config()
969 &ctx->entry, sizeof(&ctx->entry), NULL); in lsapi_activate_user_ini_mk_user_config()
[all …]
/PHP-5.6/ext/mysql/tests/
H A Dmysql_phpinfo.phpt67 foreach ($expected as $k => $entry)
68 if (!stristr($phpinfo, $entry))
69 printf("[012] Could not find entry for '%s'\n", $entry);
/PHP-5.6/sapi/tests/
H A Dtest007.phpt10 Content-Disposition: form-data; name="entry"
12 entry box

Completed in 52 milliseconds

12345678910