Home
last modified time | relevance | path

Searched refs:purpose (Results 1 – 25 of 43) sorted by last modified time

12

/php-src/
H A DUPGRADING608 identifier profiling purpose) constants.
H A Dphp.ini-development1294 ; You can use the script in the ext/session dir for that purpose.
H A Dphp.ini-production1296 ; You can use the script in the ext/session dir for that purpose.
H A DREADME.md12 PHP is a popular general-purpose scripting language that is especially suited to
H A DREADME.REDIST.BINS177 ensure compatibility, or for any other purpose. I would appreciate
266 and license this software and its documentation for any purpose, provided
310 Permission is granted to anyone to use this software for any purpose,
365 purpose with or without fee is hereby granted, provided that the above
524 particular purpose, with respect to this code and accompanying
/php-src/Zend/
H A Dzend_attributes.c139 …tributes_sensitive_parameter_value_get_properties_for(zend_object *zobj, zend_prop_purpose purpose) in attributes_sensitive_parameter_value_get_properties_for() argument
H A Dzend_object_handlers.c1969 ZEND_API HashTable *zend_std_get_properties_for(zend_object *obj, zend_prop_purpose purpose) { in zend_std_get_properties_for() argument
1971 switch (purpose) { in zend_std_get_properties_for()
1997 ZEND_API HashTable *zend_get_properties_for(zval *obj, zend_prop_purpose purpose) { in zend_get_properties_for() argument
2001 return zobj->handlers->get_properties_for(zobj, purpose); in zend_get_properties_for()
2004 return zend_std_get_properties_for(zobj, purpose); in zend_get_properties_for()
H A Dzend_weakrefs.c454 static HashTable *zend_weakmap_get_properties_for(zend_object *object, zend_prop_purpose purpose) in zend_weakmap_get_properties_for() argument
456 if (purpose != ZEND_PROP_PURPOSE_DEBUG) { in zend_weakmap_get_properties_for()
/php-src/ext/openssl/
H A Dopenssl.c2303 static int check_cert(X509_STORE *ctx, X509 *x, STACK_OF(X509) *untrustedchain, int purpose) in check_cert() argument
2319 if (purpose >= 0 && !X509_STORE_CTX_set_purpose(csc, purpose)) { in check_cert()
2341 zend_long purpose; in PHP_FUNCTION() local
2348 Z_PARAM_LONG(purpose) in PHP_FUNCTION()
2373 ret = check_cert(cainfo, cert, untrustedchain, (int)purpose); in PHP_FUNCTION()
H A Dopenssl_arginfo.h39 ZEND_ARG_TYPE_INFO(0, purpose, IS_LONG, 0)
H A Dopenssl.stub.php420 function openssl_x509_checkpurpose(OpenSSLCertificate|string $certificate, int $purpose, array $ca_… argument
/php-src/ext/spl/
H A Dspl_fixedarray.c227 …ic HashTable* spl_fixedarray_object_get_properties_for(zend_object *obj, zend_prop_purpose purpose) in spl_fixedarray_object_get_properties_for() argument
230 ZEND_ASSERT(purpose != ZEND_PROP_PURPOSE_SERIALIZE); in spl_fixedarray_object_get_properties_for()
H A Dspl_array.c731 static HashTable *spl_array_get_properties_for(zend_object *object, zend_prop_purpose purpose) /* {… in spl_array_get_properties_for() argument
738 return zend_std_get_properties_for(object, purpose); in spl_array_get_properties_for()
746 switch (purpose) { in spl_array_get_properties_for()
755 return zend_std_get_properties_for(object, purpose); in spl_array_get_properties_for()
/php-src/ext/openssl/tests/
H A Dopenssl_error_string_basic_openssl3.phpt139 // checking purpose fails because there is no such purpose 1000
141 expect_openssl_errors('openssl_x509_checkpurpose purpose', ['05800079']);
177 openssl_x509_checkpurpose purpose: ok
H A Dopenssl_error_string_basic.phpt138 // checking purpose fails because there is no such purpose 1000
140 expect_openssl_errors('openssl_x509_checkpurpose purpose', ['0B086079']);
181 openssl_x509_checkpurpose purpose: ok
H A Dopenssl_x509_checkpurpose_basic.phpt2 int openssl_x509_checkpurpose ( mixed $x509cert , int $purpose [, array $cainfo = array() [, string…
20 /* int openssl_x509_checkpurpose ( mixed $x509cert , int $purpose); */
45 /* int openssl_x509_checkpurpose ( mixed $x509cert , int $purpose [, array $cainfo = array() ] ); */
70 /* int openssl_x509_checkpurpose ( mixed $x509cert , int $purpose [, array $cainfo = array() [, str…
/php-src/ext/date/
H A Dphp_date.c351 static HashTable *date_object_get_properties_for(zend_object *object, zend_prop_purpose purpose);
355 …HashTable *date_object_get_properties_for_timezone(zend_object *object, zend_prop_purpose purpose);
1964 static HashTable *date_object_get_properties_for(zend_object *object, zend_prop_purpose purpose) /*… in date_object_get_properties_for() argument
1969 switch (purpose) { in date_object_get_properties_for()
1977 return zend_std_get_properties_for(object, purpose); in date_object_get_properties_for()
2107 … *date_object_get_properties_for_timezone(zend_object *object, zend_prop_purpose purpose) /* {{{ */ in date_object_get_properties_for_timezone() argument
2112 switch (purpose) { in date_object_get_properties_for_timezone()
2120 return zend_std_get_properties_for(object, purpose); in date_object_get_properties_for_timezone()
/php-src/sapi/fpm/tests/
H A Dlogtool.inc198 // which should not be an issue for the test purpose.
/php-src/ext/xsl/tests/
H A DXSLTProcessor_namespace_mapper_lifetime.phpt28 // And yes, this is done twice on purpose to check for leaks
/php-src/ext/pdo/
H A Dpdo_stmt.c2413 static HashTable *row_get_properties_for(zend_object *object, zend_prop_purpose purpose) in row_get_properties_for() argument
2421 if (purpose != ZEND_PROP_PURPOSE_DEBUG) { in row_get_properties_for()
2422 return zend_std_get_properties_for(object, purpose); in row_get_properties_for()
/php-src/docs/source/introduction/
H A Dhigh-level-overview.rst155 How exactly each opcode behaves depends on its purpose. You can find a complete list of opcodes in
/php-src/docs-old/
H A Dstreams.md215 it naturally supports `FILE *`. You can use this code snippet for this purpose:
/php-src/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_columncount.phpt18 // The only purpose of this is to check if emulated and native PS
/php-src/ext/dom/lexbor/
H A DLICENSE59 Licensor for the purpose of discussing and improving the Work, but
/php-src/ext/fileinfo/tests/
H A Dmagic私はガラスを食べられます3246 # for debugging purpose size in hexadecimal
3305 # 2 bytes: unknown purpose
7705 # for debugging purpose CPU type as hexadecimal
25753 # Maple V release 4, a multi-purpose math program
25900 # Mathematica a multi-purpose math program
30834 # int16 unknown2; // unknown purpose
32124 # containing version, creation date, and purpose
33893 # for debugging purpose display next chunk like: MMAPhdr
34269 # for debugging purpose display next chunk like: DISP LIST
34305 # for debugging purpose display 5th chunk like: LIST osfp
[all …]

Completed in 230 milliseconds

12