Home
last modified time | relevance | path

Searched refs:pname (Results 1 – 25 of 136) sorted by last modified time

123456

/php-src/ext/openssl/
H A Dopenssl.c2173 char * pname; in PHP_FUNCTION() local
2188 pname = useshortnames ? X509_PURPOSE_get0_sname(purp) : X509_PURPOSE_get0_name(purp); in PHP_FUNCTION()
2189 add_index_string(&subsub, 2, pname); in PHP_FUNCTION()
/php-src/ext/pdo_firebird/
H A Dfirebird_driver.c301 char pname[254], ident[253], ident2[253]; in php_firebird_preprocess() local
393 strncpy(pname, start, l); in php_firebird_preprocess()
394 pname[l] = '\0'; in php_firebird_preprocess()
399 zend_hash_str_update(named_params, pname, l, &tmp); in php_firebird_preprocess()
/php-src/ext/mysqli/
H A Dmysqli.c45 while (b[i].pname != NULL) { \
46 mysqli_add_property((a), (b)[i].pname, (b)[i].pname_length, \
295 void mysqli_add_property(HashTable *h, const char *pname, size_t pname_len, mysqli_read_t r_func, m… in mysqli_add_property() argument
298 p.name = zend_string_init_interned(pname, pname_len, 1); in mysqli_add_property()
H A Dphp_mysqli_structs.h100 const char *pname; member
/php-src/ext/phar/tests/
H A Dgh13833.phpt11 $pname = 'phar://' . $fname;
H A D024-opcache-win32.phpt27 $pname = 'phar://' . $fname;
37 include $pname . '/a.php';
38 include $pname . '/b.php';
39 include $pname . '/b/c.php';
H A Dphar_stub_write_file.phpt12 $pname = 'phar://' . $fname;
H A Dphar_stub.phpt11 $pname = 'phar://' . $fname;
H A Dphar_metadata_write3.phpt16 $pname = 'phar://' . $fname;
25 var_dump(file_get_contents($pname.'/'.$name));
H A Dtest_alias_unset.phpt10 $pname = 'phar://' . $fname;
24 $a = fopen($pname . '/file1.txt', 'r'); // this works because there are no references to $fname2 op…
34 $a = file_get_contents($pname . '/file1.txt'); // this fails because $fname2 ref exists
/php-src/Zend/
H A Dzend_API.c1710 zend_string *pname = zend_string_init(prop_name, prop_name_len, 0); in object_properties_load() local
1717 property_info = zend_get_property_info(object->ce, pname, 1); in object_properties_load()
1718 zend_string_release_ex(pname, 0); in object_properties_load()
/php-src/ext/phar/tests/tar/
H A Dphar_stub.phpt12 $pname = 'phar://' . $fname;
H A Dphar_copy.phpt15 $pname = 'phar://'.$fname;
H A Dlinks2.phpt8 $pname = 'phar://' . $fname;
H A Dtar_gzip.phpt13 $pname = 'phar://' . $fname;
/php-src/ext/phar/tests/zip/
H A Dphar_stub.phpt12 $pname = 'phar://' . $fname;
H A Dlargezip.phpt12 $pname = 'phar://' . $fname;
H A Dnotphar.phpt12 $pname = 'phar://' . $fname;
H A Dphar_copy.phpt14 $pname = 'phar://'.$fname;
H A Dmetadata_write_commit.phpt12 $pname = 'phar://' . $fname;
46 var_dump(file_get_contents($pname.'/'.$name));
H A Dphar_magic.phpt11 $pname = __DIR__ . '/' . basename(__FILE__, '.php') . '.phar.zip.php';
23 include $pname;
H A Dphar_oo_compressallbz2.phpt12 $pname = 'phar://' . $fname;
20 var_dump(file_get_contents($pname . '/a'));
22 var_dump(file_get_contents($pname . '/b'));
24 var_dump(file_get_contents($pname . '/c'));
28 var_dump(file_get_contents($pname . '/a'));
31 var_dump(file_get_contents($pname . '/b'));
34 var_dump(file_get_contents($pname . '/c'));
H A Dphar_oo_compressallgz.phpt11 $pname = 'phar://' . $fname;
18 var_dump(file_get_contents($pname . '/a'));
20 var_dump(file_get_contents($pname . '/b'));
22 var_dump(file_get_contents($pname . '/c'));
26 var_dump(file_get_contents($pname . '/a'));
29 var_dump(file_get_contents($pname . '/b'));
32 var_dump(file_get_contents($pname . '/c'));
H A Dall.phpt13 $pname = 'phar://' . $fname;
32 var_dump(file_exists($fname), file_exists($pname . '/a'));
H A Dcreate_new_and_modify.phpt12 $pname = 'phar://' . $fname;
16 file_put_contents($pname . '/a.php', "brand new!\n");
21 opcache_invalidate($pname . '/a.php', true);
32 include $pname . '/a.php';
34 file_put_contents($pname .'/a.php', "modified!\n");
35 file_put_contents($pname .'/b.php', "another!\n");
42 include $pname . '/a.php';
43 include $pname . '/b.php';

Completed in 77 milliseconds

123456