Home
last modified time | relevance | path

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

12345678910

/PHP-5.5/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);
38 PHPAPI void php_request_shutdown_for_hook(void *dummy);
44 PHPAPI int php_handle_special_queries(TSRMLS_D);
45 PHPAPI int php_lint_script(zend_file_handle *file TSRMLS_DC);
47 PHPAPI void php_handle_aborted_connection(void);
[all …]
H A Dphp_output.h193 PHPAPI void php_output_startup(void);
195 PHPAPI void php_output_shutdown(void);
200 PHPAPI int php_output_activate(TSRMLS_D);
205 PHPAPI int php_output_get_status(TSRMLS_D);
213 PHPAPI int php_output_flush(TSRMLS_D);
214 PHPAPI void php_output_flush_all(TSRMLS_D);
215 PHPAPI int php_output_clean(TSRMLS_D);
217 PHPAPI int php_output_end(TSRMLS_D);
218 PHPAPI void php_output_end_all(TSRMLS_D);
219 PHPAPI int php_output_discard(TSRMLS_D);
[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…
33 PHPAPI int php_check_open_basedir(const char *path TSRMLS_DC);
34 PHPAPI int php_check_open_basedir_ex(const char *path, int warn TSRMLS_DC);
35 PHPAPI int php_check_specific_open_basedir(const char *basedir, const char *path TSRMLS_DC);
47 PHPAPI int php_check_safe_mode_include_dir(const char *path TSRMLS_DC);
49 PHPAPI char *php_resolve_path(const char *filename, int filename_len, const char *path TSRMLS_DC);
51 PHPAPI FILE *php_fopen_with_path(const char *filename, const char *mode, const char *path, char **o…
53 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 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 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(TSRMLS_D);
29 PHPAPI void php_shutdown_temporary_directory(void);
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);
290 PHPAPI off_t _php_stream_tell(php_stream *stream TSRMLS_DC);
312 PHPAPI int _php_stream_eof(php_stream *stream TSRMLS_DC);
315 PHPAPI int _php_stream_getc(php_stream *stream TSRMLS_DC);
318 PHPAPI int _php_stream_putc(php_stream *stream, int c TSRMLS_DC);
331 PHPAPI int _php_stream_puts(php_stream *stream, char *buf TSRMLS_DC);
583 PHPAPI HashTable *_php_stream_get_url_stream_wrappers_hash(TSRMLS_D);
586 PHPAPI HashTable *_php_get_stream_filters_hash(TSRMLS_D);
[all …]
H A Dphp.h51 # define PHPAPI __declspec(dllexport) macro
53 # define PHPAPI __declspec(dllimport) macro
59 # define PHPAPI __attribute__ ((visibility("default"))) macro
61 # define PHPAPI macro
124 PHPAPI size_t php_strlcpy(char *dst, const char *src, size_t siz);
280 PHPAPI int php_write(void *buf, uint size TSRMLS_DC);
283 PHPAPI int php_get_module_initialized(void);
284 PHPAPI void php_log_err(char *log_message TSRMLS_DC);
333 PHPAPI int php_register_internal_extensions(TSRMLS_D);
336 PHPAPI void php_com_initialize(TSRMLS_D);
[all …]
/PHP-5.5/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 …]
/PHP-5.5/ext/standard/
H A Dinfo.h65 PHPAPI char *php_info_html_esc(char *string TSRMLS_DC);
67 PHPAPI void php_print_info_htmlhead(TSRMLS_D);
68 PHPAPI void php_print_info(int flag TSRMLS_DC);
69 PHPAPI void php_print_style(void);
70 PHPAPI void php_info_print_style(TSRMLS_D);
75 PHPAPI void php_info_print_table_start(void);
76 PHPAPI void php_info_print_table_end(void);
77 PHPAPI void php_info_print_box_start(int bg);
78 PHPAPI void php_info_print_box_end(void);
79 PHPAPI void php_info_print_hr(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.h118 PHPAPI struct lconv *localeconv_r(struct lconv *out);
121 PHPAPI char *php_strtoupper(char *s, size_t len);
122 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);
/PHP-5.5/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;
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;
42 extern PHPAPI zend_class_entry *reflection_extension_ptr;
[all …]
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_ext_plugin.h44 PHPAPI struct st_mysqlnd_conn_methods * mysqlnd_conn_get_methods();
45 PHPAPI void mysqlnd_conn_set_methods(struct st_mysqlnd_conn_methods * methods);
47 PHPAPI struct st_mysqlnd_conn_data_methods * mysqlnd_conn_data_get_methods();
50 PHPAPI struct st_mysqlnd_res_methods * mysqlnd_result_get_methods();
51 PHPAPI void mysqlnd_result_set_methods(struct st_mysqlnd_res_methods * methods);
53 PHPAPI struct st_mysqlnd_stmt_methods * mysqlnd_stmt_get_methods();
54 PHPAPI void mysqlnd_stmt_set_methods(struct st_mysqlnd_stmt_methods * methods);
56 PHPAPI struct st_mysqlnd_protocol_methods * mysqlnd_protocol_get_methods();
57 PHPAPI void mysqlnd_protocol_set_methods(struct st_mysqlnd_protocol_methods * methods);
59 PHPAPI struct st_mysqlnd_net_methods * mysqlnd_net_get_methods();
[all …]
H A Dmysqlnd_ext_plugin.c33 PHPAPI void **
47 PHPAPI void **
74 PHPAPI void **
115 PHPAPI struct st_mysqlnd_conn_methods *
147 PHPAPI struct st_mysqlnd_res_methods *
156 PHPAPI void
165 PHPAPI struct st_mysqlnd_stmt_methods *
174 PHPAPI void
192 PHPAPI void
201 PHPAPI struct st_mysqlnd_net_methods *
[all …]
H A Dmysqlnd_alloc.h27 PHPAPI extern const char * mysqlnd_debug_std_no_trace_funcs[];
53 PHPAPI extern struct st_mysqlnd_allocator_methods mysqlnd_allocator;
55 PHPAPI void * _mysqlnd_emalloc(size_t size MYSQLND_MEM_D);
59 PHPAPI void * _mysqlnd_erealloc(void *ptr, size_t new_size MYSQLND_MEM_D);
61 PHPAPI void _mysqlnd_efree(void *ptr MYSQLND_MEM_D);
62 PHPAPI void _mysqlnd_pefree(void *ptr, zend_bool persistent MYSQLND_MEM_D);
63 PHPAPI void * _mysqlnd_malloc(size_t size MYSQLND_MEM_D);
64 PHPAPI void * _mysqlnd_calloc(unsigned int nmemb, size_t size MYSQLND_MEM_D);
65 PHPAPI void * _mysqlnd_realloc(void *ptr, size_t new_size MYSQLND_MEM_D);
66 PHPAPI void _mysqlnd_free(void *ptr MYSQLND_MEM_D);
[all …]
H A Dmysqlnd_reverse_api.h31 PHPAPI void mysqlnd_reverse_api_init(TSRMLS_D);
32 PHPAPI void mysqlnd_reverse_api_end(TSRMLS_D);
34 PHPAPI HashTable * mysqlnd_reverse_api_get_api_list(TSRMLS_D);
36 PHPAPI void mysqlnd_reverse_api_register_api(MYSQLND_REVERSE_API * apiext TSRMLS_DC);
38 PHPAPI MYSQLND * zval_to_mysqlnd(zval * zv TSRMLS_DC);
/PHP-5.5/ext/xml/
H A Dexpat_compat.h124 PHPAPI XML_Parser XML_ParserCreate(const XML_Char *);
127 PHPAPI void XML_SetUserData(XML_Parser, void *);
128 PHPAPI void *XML_GetUserData(XML_Parser);
139 PHPAPI int XML_GetErrorCode(XML_Parser);
140 PHPAPI const XML_Char *XML_ErrorString(int);
141 PHPAPI int XML_GetCurrentLineNumber(XML_Parser);
142 PHPAPI int XML_GetCurrentColumnNumber(XML_Parser);
143 PHPAPI int XML_GetCurrentByteIndex(XML_Parser);
144 PHPAPI int XML_GetCurrentByteCount(XML_Parser);
145 PHPAPI const XML_Char *XML_ExpatVersion(void);
[all …]
/PHP-5.5/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…

Completed in 67 milliseconds

12345678910