Searched refs:internal (Results 1 - 23 of 23) sorted by relevance

/PHP_TRUNK/ext/openssl/
H A Dopenssl.mak74 C_FLAGS += -inline smart -sym on -sym codeview4 -opt off -opt intrinsics -sym internal -DDEBUGGING -DDKFBPON
/PHP_TRUNK/ext/phar/tests/zip/files/
H A Dzipmaker.php.inc53 * Create an internal directory, creating parent directories as needed
/PHP_TRUNK/ext/spl/examples/
H A Dfindfile.inc23 /** @internal filename to find */
H A Dkeyfilter.inc24 /** @internal regular exoression used as filter */
H A Dsearchiterator.inc22 /** @internal whether an entry was found already */
/PHP_TRUNK/ext/spl/internal/
H A Dappenditerator.inc20 /** @internal array of inner iterators */
H A Dspldoublylinkedlist.inc18 * from the internal one. Internally, iterators generated by nested
H A Dcachingiterator.inc22 * Iterator is an internal Iterator then you need to provide the
/PHP_TRUNK/ext/xml/
H A Dxml.mak64 C_FLAGS += -inline smart -sym on -sym codeview4 -opt off -opt intrinsics -sym internal -DDEBUGGING -DDKFBPON
/PHP_TRUNK/ext/ldap/
H A Dldap.mak65 C_FLAGS += -inline smart -sym on -sym codeview4 -opt off -opt intrinsics -sym internal -DDEBUGGING -DDKFBPON
/PHP_TRUNK/Zend/
H A Dzend_alloc.h233 ZEND_API zend_mm_heap *zend_mm_startup_ex(const zend_mm_mem_handlers *handlers, size_t block_size, size_t reserve_size, int internal, void *params);
H A Dzend.h537 } internal; member in union:_zend_class_entry::__anon3
H A Dzend_compile.h204 /* function flag for internal user call handlers __call, __callstatic */
243 * arg_info array to define properties of internal functions.
675 ZEND_API void zend_mangle_property_name(char **dest, int *dest_length, const char *src1, int src1_length, const char *src2, int src2_length, int internal);
870 /* generate ZEND_DO_FCALL_BY_NAME for internal functions instead of ZEND_DO_FCALL */
873 /* don't perform early binding for classes inherited form internal ones;
874 * in namespaces assume that internal class that doesn't exist at compile-time
H A Dzend_builtin_functions.c1741 zval *internal; local
1748 MAKE_STD_ZVAL(internal);
1751 array_init(internal);
1755 zend_hash_apply_with_arguments(EG(function_table) TSRMLS_CC, (apply_func_args_t) copy_function_name, 2, internal, user);
1757 if (zend_hash_add(Z_ARRVAL_P(return_value), "internal", sizeof("internal"), (void **)&internal, sizeof(zval *), NULL) == FAILURE) {
1758 zval_ptr_dtor(&internal);
1761 zend_error(E_WARNING, "Cannot add internal functions to return value from get_defined_functions()");
1968 module_names[0] = "internal";
[all...]
H A Dzend_alloc.c434 int internal; member in struct:_zend_mm_heap
1042 ZEND_API zend_mm_heap *zend_mm_startup_ex(const zend_mm_mem_handlers *handlers, size_t block_size, size_t reserve_size, int internal, void *params) argument
1122 heap->internal = internal;
1128 if (internal) {
1606 int internal; local
1676 internal = heap->internal;
1687 if (!internal) {
H A Dzend_API.h211 class_container.info.internal.module = NULL; \
212 class_container.info.internal.builtin_functions = functions; \
241 /* internal function to efficiently copy parameters when executing __call() */
H A Dzend_API.c1855 /* Collect internal classes with static members */
2113 /* Since here we are handling internal functions only we can add the keyword flag. */
2332 if ((*ce)->type == ZEND_INTERNAL_CLASS && (*ce)->info.internal.module->module_number == *module_number) {
2501 class_entry->info.internal.module = EG(current_module);
2503 if (class_entry->info.internal.builtin_functions) {
2504 zend_register_functions(class_entry, class_entry->info.internal.builtin_functions, &class_entry->function_table, MODULE_PERSISTENT TSRMLS_CC);
2867 fcc->function_handler->internal_function.module = (ce_org->type == ZEND_INTERNAL_CLASS) ? ce_org->info.internal.module : NULL;
2928 /* An internal function assumes $this is present and won't check that. So PHP would crash by allowing the call. */
H A Dzend_compile.c1947 internal function with short name */
2051 internal function with short name */
3121 * we still need to do the arg number checks. We are only willing to ignore this for internal
3667 /* User class extends internal class */
5214 ZEND_API void zend_mangle_property_name(char **dest, int *dest_length, const char *src1, int src1_length, const char *src2, int src2_length, int internal) /* {{{ */ argument
5220 prop_name = pemalloc(prop_name_length + 1, internal);
6870 ce->info.internal.module = NULL;
6871 ce->info.internal.builtin_functions = NULL;
H A Dzend_object_handlers.c993 call_user_call->module = (ce->type == ZEND_INTERNAL_CLASS) ? ce->info.internal.module : NULL;
1136 callstatic_user_call->module = (ce->type == ZEND_INTERNAL_CLASS) ? ce->info.internal.module : NULL;
/PHP_TRUNK/main/
H A Doutput.c454 * Start an internal output handler that does not have to maintain a non-global state */
511 * Create an internal output handler that can maintain a non-global state */
517 handler->func.internal = output_handler;
648 * Get an internal output handler for a user handler if it exists */
659 * Registers an internal output handler as alias for a user handler */
975 /* call failed, pass internal buffer along */
990 if (SUCCESS == handler->func.internal(&handler->opaq, context)) {
H A Dphp_output.h142 php_output_handler_context_func_t internal; member in union:_php_output_handler::__anon278
/PHP_TRUNK/ext/reflection/
H A Dphp_reflection.c382 string_printf(str, (ce->type == ZEND_USER_CLASS) ? "<user" : "<internal");
383 if (ce->type == ZEND_INTERNAL_CLASS && ce->info.internal.module) {
384 string_printf(str, ":%s", ce->info.internal.module->name);
839 string_printf(str, (fptr->type == ZEND_USER_FUNCTION) ? "<user" : "<internal");
1009 if (((*pce)->type == ZEND_INTERNAL_CLASS) && (*pce)->info.internal.module && !strcasecmp((*pce)->info.internal.module->name, module->name)) {
1477 zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC, "Cannot determine default value for internal functions");
1758 Returns whether this is an internal function */
2087 zend_internal_function *internal; local
2096 internal
2111 zend_internal_function *internal; local
[all...]
/PHP_TRUNK/ext/pcre/pcrelib/
H A Dpcre_compile.c42 supporting internal functions that are not used by other modules. */
431 "internal error: unexpected repeat\0"
445 "internal error: code overflow\0"
480 "internal error: overran compiling workspace\0"
481 "internal error: previously-checked referenced subpattern not found\0"
502 "internal error: unknown opcode in find_fixedlength()\0"
1735 or -4 if an unknown opcode was encountered (internal error)
4614 If we are at the end of an internal nested string, revert to the outer
5150 internal or forward referenced group, because the offset is from the
8063 /* Put in the magic number, and save the sizes, initial options, internal
[all...]

Completed in 93 milliseconds