Home
last modified time | relevance | path

Searched refs:PHPAPI (Results 1 – 25 of 226) sorted by relevance

12345678910

/PHP-5.3/main/
H A Dphp_main.h30 PHPAPI int php_request_startup(TSRMLS_D);
31 PHPAPI void php_request_shutdown(void *dummy);
32 PHPAPI void php_request_shutdown_for_exec(void *dummy);
34 PHPAPI void php_module_shutdown(TSRMLS_D);
35 PHPAPI void php_module_shutdown_for_exec(void);
37 PHPAPI int php_request_startup_for_hook(TSRMLS_D);
43 PHPAPI int php_handle_special_queries(TSRMLS_D);
44 PHPAPI int php_lint_script(zend_file_handle *file TSRMLS_DC);
46 PHPAPI void php_handle_aborted_connection(void);
47 PHPAPI int php_handle_auth_data(const char *auth TSRMLS_DC);
[all …]
H A Dphp_output.h27 PHPAPI void php_output_startup(void);
28 PHPAPI void php_output_activate(TSRMLS_D);
30 PHPAPI void php_output_register_constants(TSRMLS_D);
40 PHPAPI int php_ob_get_buffer(zval *p TSRMLS_DC);
41 PHPAPI int php_ob_get_length(zval *p TSRMLS_DC);
42 PHPAPI void php_start_implicit_flush(TSRMLS_D);
43 PHPAPI void php_end_implicit_flush(TSRMLS_D);
44 PHPAPI char *php_get_output_start_filename(TSRMLS_D);
45 PHPAPI int php_get_output_start_lineno(TSRMLS_D);
49 PHPAPI int php_ob_get_buffer(zval *p TSRMLS_DC);
[all …]
H A Dfopen_wrappers.h28 PHPAPI int php_fopen_primary_script(zend_file_handle *file_handle TSRMLS_DC);
29 PHPAPI char *expand_filepath(const char *filepath, char *real_path TSRMLS_DC);
30 PHPAPI char *expand_filepath_ex(const char *filepath, char *real_path, const char *relative_to, siz…
32 PHPAPI int php_check_open_basedir(const char *path TSRMLS_DC);
33 PHPAPI int php_check_open_basedir_ex(const char *path, int warn TSRMLS_DC);
34 PHPAPI int php_check_specific_open_basedir(const char *basedir, const char *path TSRMLS_DC);
46 PHPAPI int php_check_safe_mode_include_dir(const char *path TSRMLS_DC);
48 PHPAPI char *php_resolve_path(const char *filename, int filename_len, const char *path TSRMLS_DC);
50 PHPAPI FILE *php_fopen_with_path(const char *filename, const char *mode, const char *path, char **o…
52 PHPAPI char *php_strip_url_passwd(char *path);
[all …]
H A Dphp_ini.h27 PHPAPI void config_zval_dtor(zval *zvalue);
31 PHPAPI zval *cfg_get_entry(const char *name, uint name_length);
32 PHPAPI int cfg_get_long(const char *varname, long *result);
33 PHPAPI int cfg_get_double(const char *varname, double *result);
34 PHPAPI int cfg_get_string(const char *varname, char **result);
36 PHPAPI void php_ini_activate_config(HashTable *source_hash, int modify_type, int stage TSRMLS_DC);
37 PHPAPI int php_ini_has_per_dir_config(void);
38 PHPAPI int php_ini_has_per_host_config(void);
39 PHPAPI void php_ini_activate_per_dir_config(char *path, uint path_len TSRMLS_DC);
40 PHPAPI void php_ini_activate_per_host_config(const char *host, uint host_len TSRMLS_DC);
[all …]
H A Dphp_memory_streams.h43 PHPAPI php_stream *_php_stream_memory_create(int mode STREAMS_DC TSRMLS_DC);
44 PHPAPI php_stream *_php_stream_memory_open(int mode, char *buf, size_t length STREAMS_DC TSRMLS_DC);
45 PHPAPI char *_php_stream_memory_get_buffer(php_stream *stream, size_t *length STREAMS_DC TSRMLS_DC);
47 PHPAPI php_stream *_php_stream_temp_create(int mode, size_t max_memory_usage STREAMS_DC TSRMLS_DC);
48 PHPAPI php_stream *_php_stream_temp_open(int mode, size_t max_memory_usage, char *buf, size_t lengt…
51 extern PHPAPI php_stream_ops php_stream_memory_ops;
52 extern PHPAPI php_stream_ops php_stream_temp_ops;
53 extern PHPAPI php_stream_ops php_stream_rfc2397_ops;
54 extern PHPAPI php_stream_wrapper php_stream_rfc2397_wrapper;
H A Dphp_streams.h31 PHPAPI int php_file_le_stream(void);
32 PHPAPI int php_file_le_pstream(void);
33 PHPAPI int php_file_le_stream_filter(void);
285 PHPAPI off_t _php_stream_tell(php_stream *stream TSRMLS_DC);
304 PHPAPI int _php_stream_eof(php_stream *stream TSRMLS_DC);
307 PHPAPI int _php_stream_getc(php_stream *stream TSRMLS_DC);
310 PHPAPI int _php_stream_putc(php_stream *stream, int c TSRMLS_DC);
323 PHPAPI int _php_stream_puts(php_stream *stream, char *buf TSRMLS_DC);
574 PHPAPI HashTable *_php_stream_get_url_stream_wrappers_hash(TSRMLS_D);
577 PHPAPI HashTable *_php_get_stream_filters_hash(TSRMLS_D);
[all …]
H A Dphp_open_temporary_file.h25 PHPAPI FILE *php_open_temporary_file(const char *dir, const char *pfx, char **opened_path_p TSRMLS_…
26 PHPAPI int php_open_temporary_fd_ex(const char *dir, const char *pfx, char **opened_path_p, zend_bo…
27 PHPAPI int php_open_temporary_fd(const char *dir, const char *pfx, char **opened_path_p TSRMLS_DC);
28 PHPAPI const char *php_get_temporary_directory(void);
29 PHPAPI void php_shutdown_temporary_directory(void);
H A Dsnprintf.h81 PHPAPI int ap_php_slprintf(char *buf, size_t len, const char *format,...);
82 PHPAPI int ap_php_vslprintf(char *buf, size_t len, const char *format, va_list ap);
83 PHPAPI int ap_php_snprintf(char *, size_t, const char *, ...);
84 PHPAPI int ap_php_vsnprintf(char *, size_t, const char *, va_list ap);
85 PHPAPI int ap_php_vasprintf(char **buf, const char *format, va_list ap);
86 PHPAPI int ap_php_asprintf(char **buf, const char *format, ...);
87 PHPAPI int php_sprintf (char* s, const char* format, ...) PHP_ATTRIBUTE_FORMAT(printf, 2, 3);
88 PHPAPI char * php_gcvt(double value, int ndigit, char dec_point, char exponent, char *buf);
89 PHPAPI char * php_conv_fp(register char format, register double num,
H A Dreentrancy.c61 PHPAPI char *php_ctime_r(const time_t *clock, char *buf) in php_ctime_r()
68 PHPAPI char *php_asctime_r(const struct tm *tm, char *buf) in php_asctime_r()
91 PHPAPI char *php_ctime_r(const time_t *clock, char *buf) in php_ctime_r()
98 PHPAPI char *php_asctime_r(const struct tm *tm, char *buf) in php_asctime_r()
105 PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm) in php_gmtime_r()
116 PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm) in php_gmtime_r()
128 PHPAPI int php_readdir_r(DIR *dirp, struct dirent *entry, in php_readdir_r()
197 PHPAPI char *php_ctime_r(const time_t *clock, char *buf) in php_ctime_r()
215 PHPAPI char *php_asctime_r(const struct tm *tm, char *buf) in php_asctime_r()
321 PHPAPI int
[all …]
/PHP-5.3/ext/spl/
H A Dspl_exceptions.h27 extern PHPAPI zend_class_entry *spl_ce_LogicException;
28 extern PHPAPI zend_class_entry *spl_ce_BadFunctionCallException;
29 extern PHPAPI zend_class_entry *spl_ce_BadMethodCallException;
30 extern PHPAPI zend_class_entry *spl_ce_DomainException;
32 extern PHPAPI zend_class_entry *spl_ce_LengthException;
33 extern PHPAPI zend_class_entry *spl_ce_OutOfRangeException;
35 extern PHPAPI zend_class_entry *spl_ce_RuntimeException;
36 extern PHPAPI zend_class_entry *spl_ce_OutOfBoundsException;
37 extern PHPAPI zend_class_entry *spl_ce_OverflowException;
38 extern PHPAPI zend_class_entry *spl_ce_RangeException;
[all …]
H A Dspl_iterators.h39 extern PHPAPI zend_class_entry *spl_ce_FilterIterator;
41 extern PHPAPI zend_class_entry *spl_ce_ParentIterator;
42 extern PHPAPI zend_class_entry *spl_ce_SeekableIterator;
43 extern PHPAPI zend_class_entry *spl_ce_LimitIterator;
44 extern PHPAPI zend_class_entry *spl_ce_CachingIterator;
46 extern PHPAPI zend_class_entry *spl_ce_OuterIterator;
47 extern PHPAPI zend_class_entry *spl_ce_IteratorIterator;
50 extern PHPAPI zend_class_entry *spl_ce_EmptyIterator;
51 extern PHPAPI zend_class_entry *spl_ce_AppendIterator;
52 extern PHPAPI zend_class_entry *spl_ce_RegexIterator;
[all …]
H A Dspl_exceptions.c36 PHPAPI zend_class_entry *spl_ce_LogicException;
37 PHPAPI zend_class_entry *spl_ce_BadFunctionCallException;
38 PHPAPI zend_class_entry *spl_ce_BadMethodCallException;
39 PHPAPI zend_class_entry *spl_ce_DomainException;
41 PHPAPI zend_class_entry *spl_ce_LengthException;
42 PHPAPI zend_class_entry *spl_ce_OutOfRangeException;
43 PHPAPI zend_class_entry *spl_ce_RuntimeException;
44 PHPAPI zend_class_entry *spl_ce_OutOfBoundsException;
45 PHPAPI zend_class_entry *spl_ce_OverflowException;
46 PHPAPI zend_class_entry *spl_ce_RangeException;
[all …]
H A Dspl_heap.h27 extern PHPAPI zend_class_entry *spl_ce_SplHeap;
28 extern PHPAPI zend_class_entry *spl_ce_SplMinHeap;
29 extern PHPAPI zend_class_entry *spl_ce_SplMaxHeap;
31 extern PHPAPI zend_class_entry *spl_ce_SplPriorityQueue;
/PHP-5.3/ext/standard/
H A Dinfo.h72 PHPAPI void php_print_info_htmlhead(TSRMLS_D);
73 PHPAPI void php_print_info(int flag TSRMLS_DC);
74 PHPAPI void php_print_style(void);
75 PHPAPI void php_info_print_style(TSRMLS_D);
80 PHPAPI void php_info_print_table_start(void);
81 PHPAPI void php_info_print_table_end(void);
82 PHPAPI void php_info_print_box_start(int bg);
83 PHPAPI void php_info_print_box_end(void);
84 PHPAPI void php_info_print_hr(void);
86 PHPAPI char *php_logo_guid(void);
[all …]
H A Dfile.h32 PHPAPI PHP_FUNCTION(fclose);
35 PHPAPI PHP_FUNCTION(feof);
36 PHPAPI PHP_FUNCTION(fread);
37 PHPAPI PHP_FUNCTION(fgetc);
38 PHPAPI PHP_FUNCTION(fgets);
40 PHPAPI PHP_FUNCTION(fgetss);
43 PHPAPI PHP_FUNCTION(fwrite);
44 PHPAPI PHP_FUNCTION(fflush);
45 PHPAPI PHP_FUNCTION(rewind);
46 PHPAPI PHP_FUNCTION(ftell);
[all …]
H A Dphp_string.h117 PHPAPI struct lconv *localeconv_r(struct lconv *out);
120 PHPAPI char *php_strtoupper(char *s, size_t len);
121 PHPAPI char *php_strtolower(char *s, size_t len);
126 PHPAPI void php_stripslashes(char *str, int *len TSRMLS_DC);
127 PHPAPI void php_stripcslashes(char *str, int *len);
129 PHPAPI size_t php_dirname(char *str, size_t len);
130 PHPAPI char *php_stristr(char *s, char *t, size_t s_len, size_t t_len);
131 PHPAPI char *php_str_to_str_ex(char *haystack, int length, char *needle,
133 PHPAPI char *php_str_to_str(char *haystack, int length, char *needle,
143 PHPAPI size_t php_strspn(char *s1, char *s2, char *s1_end, char *s2_end);
[all …]
H A Durl.h34 PHPAPI void php_url_free(php_url *theurl);
35 PHPAPI php_url *php_url_parse(char const *str);
36 PHPAPI php_url *php_url_parse_ex(char const *str, int length);
37 PHPAPI int php_url_decode(char *str, int len); /* return value: length of decoded string */
38 PHPAPI int php_raw_url_decode(char *str, int len); /* return value: length of decoded string */
39 PHPAPI char *php_url_encode(char const *s, int len, int *new_length);
40 PHPAPI char *php_raw_url_encode(char const *s, int len, int *new_length);
H A Dphp_var.h34 PHPAPI void php_var_dump(zval **struc, int level TSRMLS_DC);
35 PHPAPI void php_var_export(zval **struc, int level TSRMLS_DC);
36 PHPAPI void php_var_export_ex(zval **struc, int level, smart_str *buf TSRMLS_DC);
38 PHPAPI void php_debug_zval_dump(zval **struc, int level TSRMLS_DC);
50 PHPAPI void php_var_serialize(smart_str *buf, zval **struc, php_serialize_data_t *var_hash TSRMLS_D…
51 PHPAPI int php_var_unserialize(zval **rval, const unsigned char **p, const unsigned char *max, php_…
64 PHPAPI void var_replace(php_unserialize_data_t *var_hash, zval *ozval, zval **nzval);
65 PHPAPI void var_push_dtor(php_unserialize_data_t *var_hash, zval **val);
66 PHPAPI void var_destroy(php_unserialize_data_t *var_hash);
71 PHPAPI zend_class_entry *php_create_empty_class(char *class_name, int len);
H A Dmd5.h25 PHPAPI void make_digest(char *md5str, const unsigned char *digest);
26 PHPAPI void make_digest_ex(char *md5str, const unsigned char *digest, int len);
51 PHPAPI void PHP_MD5Init(PHP_MD5_CTX *ctx);
52 PHPAPI void PHP_MD5Update(PHP_MD5_CTX *ctx, const void *data, size_t size);
53 PHPAPI void PHP_MD5Final(unsigned char *result, PHP_MD5_CTX *ctx);
/PHP-5.3/ext/reflection/
H A Dphp_reflection.h32 extern PHPAPI zend_class_entry *reflector_ptr;
33 extern PHPAPI zend_class_entry *reflection_exception_ptr;
34 extern PHPAPI zend_class_entry *reflection_ptr;
35 extern PHPAPI zend_class_entry *reflection_function_abstract_ptr;
36 extern PHPAPI zend_class_entry *reflection_function_ptr;
37 extern PHPAPI zend_class_entry *reflection_parameter_ptr;
38 extern PHPAPI zend_class_entry *reflection_class_ptr;
39 extern PHPAPI zend_class_entry *reflection_object_ptr;
40 extern PHPAPI zend_class_entry *reflection_method_ptr;
41 extern PHPAPI zend_class_entry *reflection_property_ptr;
[all …]
/PHP-5.3/ext/xml/
H A Dexpat_compat.h121 PHPAPI XML_Parser XML_ParserCreate(const XML_Char *);
124 PHPAPI void XML_SetUserData(XML_Parser, void *);
125 PHPAPI void *XML_GetUserData(XML_Parser);
136 PHPAPI int XML_GetErrorCode(XML_Parser);
137 PHPAPI const XML_Char *XML_ErrorString(int);
138 PHPAPI int XML_GetCurrentLineNumber(XML_Parser);
139 PHPAPI int XML_GetCurrentColumnNumber(XML_Parser);
140 PHPAPI int XML_GetCurrentByteIndex(XML_Parser);
141 PHPAPI int XML_GetCurrentByteCount(XML_Parser);
142 PHPAPI const XML_Char *XML_ExpatVersion(void);
[all …]
/PHP-5.3/main/streams/
H A Dphp_stream_filter_api.h72 PHPAPI void php_stream_bucket_delref(php_stream_bucket *bucket TSRMLS_DC);
75 PHPAPI void php_stream_bucket_append(php_stream_bucket_brigade *brigade, php_stream_bucket *bucket …
76 PHPAPI void php_stream_bucket_unlink(php_stream_bucket *bucket TSRMLS_DC);
77 PHPAPI php_stream_bucket *php_stream_bucket_make_writeable(php_stream_bucket *bucket TSRMLS_DC);
127 PHPAPI void _php_stream_filter_prepend(php_stream_filter_chain *chain, php_stream_filter *filter TS…
129 PHPAPI void _php_stream_filter_append(php_stream_filter_chain *chain, php_stream_filter *filter TSR…
130 PHPAPI int php_stream_filter_append_ex(php_stream_filter_chain *chain, php_stream_filter *filter TS…
131 PHPAPI int _php_stream_filter_flush(php_stream_filter *filter, int finish TSRMLS_DC);
132 PHPAPI php_stream_filter *php_stream_filter_remove(php_stream_filter *filter, int call_dtor TSRMLS_…
133 PHPAPI void php_stream_filter_free(php_stream_filter *filter TSRMLS_DC);
[all …]
H A Dphp_stream_transport.h38 PHPAPI int php_stream_xport_unregister(char *protocol TSRMLS_DC);
49 PHPAPI php_stream *_php_stream_xport_create(const char *name, long namelen, int options,
61 PHPAPI int php_stream_xport_bind(php_stream *stream,
67 PHPAPI int php_stream_xport_connect(php_stream *stream,
76 PHPAPI int php_stream_xport_listen(php_stream *stream,
83 PHPAPI int php_stream_xport_accept(php_stream *stream, php_stream **client,
91 PHPAPI int php_stream_xport_get_name(php_stream *stream, int want_peer,
103 PHPAPI int php_stream_xport_recvfrom(php_stream *stream, char *buf, size_t buflen,
109 PHPAPI int php_stream_xport_sendto(php_stream *stream, const char *buf, size_t buflen,
200 PHPAPI HashTable *php_stream_xport_get_hash(void);
[all …]
H A Dphp_stream_plain_wrapper.h24 PHPAPI extern php_stream_ops php_stream_stdio_ops;
25 PHPAPI extern php_stream_wrapper php_plain_files_wrapper;
30 PHPAPI php_stream *_php_stream_fopen(const char *filename, const char *mode, char **opened_path, in…
33 PHPAPI php_stream *_php_stream_fopen_with_path(char *filename, char *mode, char *path, char **opene…
36 PHPAPI php_stream *_php_stream_fopen_from_file(FILE *file, const char *mode STREAMS_DC TSRMLS_DC);
39 PHPAPI php_stream *_php_stream_fopen_from_fd(int fd, const char *mode, const char *persistent_id ST…
42 PHPAPI php_stream *_php_stream_fopen_from_pipe(FILE *file, const char *mode STREAMS_DC TSRMLS_DC);
45 PHPAPI php_stream *_php_stream_fopen_tmpfile(int dummy STREAMS_DC TSRMLS_DC);
48 PHPAPI php_stream *_php_stream_fopen_temporary_file(const char *dir, const char *pfx, char **opened…
54 PHPAPI FILE * _php_stream_open_wrapper_as_file(char * path, char * mode, int options, char **opened…
/PHP-5.3/ext/pcre/
H A Dphp_pcre.h36 PHPAPI char *php_pcre_replace(char *regex, int regex_len, char *subject, int subject_len, zval *rep…
37 PHPAPI pcre* pcre_get_compiled_regex(char *regex, pcre_extra **extra, int *options TSRMLS_DC);
38 PHPAPI pcre* pcre_get_compiled_regex_ex(char *regex, pcre_extra **extra, int *preg_options, int *co…
55 PHPAPI pcre_cache_entry* pcre_get_compiled_regex_cache(char *regex, int regex_len TSRMLS_DC);
57 PHPAPI void php_pcre_match_impl( pcre_cache_entry *pce, char *subject, int subject_len, zval *ret…
60 PHPAPI char *php_pcre_replace_impl(pcre_cache_entry *pce, char *subject, int subject_len, zval *ret…
63 PHPAPI void php_pcre_split_impl( pcre_cache_entry *pce, char *subject, int subject_len, zval *ret…
66 PHPAPI void php_pcre_grep_impl( pcre_cache_entry *pce, zval *input, zval *return_value,

Completed in 36 milliseconds

12345678910