Home
last modified time | relevance | path

Searched refs:PHPAPI (Results 76 – 100 of 233) sorted by path

12345678910

/PHP-5.5/ext/standard/
H A Dbasic_functions.c111 PHPAPI int basic_globals_id;
113 PHPAPI php_basic_globals basic_globals;
3506 PHPAPI double php_get_nan(void) /* {{{ */ in php_get_nan()
3523 PHPAPI double php_get_inf(void) /* {{{ */ in php_get_inf()
4711 PHPAPI int _php_error_log(int opt_err, char *message, char *opt, char *headers TSRMLS_DC) /* {{{ */
4717 PHPAPI int _php_error_log_ex(int opt_err, char *message, int message_len, char *opt, char *headers …
5164 PHPAPI zend_bool register_user_shutdown_function(char *function_name, size_t function_len, php_shut…
5175 PHPAPI zend_bool remove_user_shutdown_function(char *function_name, size_t function_len TSRMLS_DC) …
5185 PHPAPI zend_bool append_user_shutdown_function(php_shutdown_function_entry shutdown_function_entry …
H A Dbasic_functions.h146 PHPAPI int _php_error_log(int opt_err, char *message, char *opt, char *headers TSRMLS_DC);
147 PHPAPI int _php_error_log_ex(int opt_err, char *message, int message_len, char *opt, char *headers …
148 PHPAPI int php_prefix_varname(zval *result, zval *prefix, char *var_name, int var_name_len, zend_bo…
237 PHPAPI extern int basic_globals_id;
240 PHPAPI extern php_basic_globals basic_globals;
252 PHPAPI double php_get_nan(void);
253 PHPAPI double php_get_inf(void);
260 PHPAPI extern zend_bool register_user_shutdown_function(char *function_name, size_t function_len, p…
261 PHPAPI extern zend_bool remove_user_shutdown_function(char *function_name, size_t function_len TSRM…
262 PHPAPI extern zend_bool append_user_shutdown_function(php_shutdown_function_entry shutdown_function…
H A Dcredits.c28 PHPAPI void php_print_credits(int flag TSRMLS_DC) /* {{{ */ in php_print_credits()
H A Dcredits.h40 PHPAPI void php_print_credits(int flag TSRMLS_DC);
H A Dcrypt.c148 PHPAPI int php_crypt(const char *password, const int pass_len, const char *salt, int salt_len, char… in php_crypt()
H A Dcss.c24 PHPAPI void php_info_print_css(TSRMLS_D) /* {{{ */ in php_info_print_css()
H A Dcss.h24 PHPAPI void php_info_print_css(TSRMLS_D);
H A Ddatetime.c54 PHPAPI char *php_std_date(time_t t TSRMLS_DC) in php_std_date()
H A Ddatetime.h29 PHPAPI char *php_std_date(time_t t TSRMLS_DC);
H A Ddl.c54 PHPAPI PHP_FUNCTION(dl) in PHP_FUNCTION()
102 PHPAPI int php_load_extension(char *filename, int type, int start_now TSRMLS_DC) in php_load_extension()
265 PHPAPI void php_dl(char *file, int type, zval *return_value, int start_now TSRMLS_DC) in php_dl()
283 PHPAPI void php_dl(char *file, int type, zval *return_value, int start_now TSRMLS_DC) in php_dl()
H A Ddl.h26 PHPAPI int php_load_extension(char *filename, int type, int start_now TSRMLS_DC);
27 PHPAPI void php_dl(char *file, int type, zval *return_value, int start_now TSRMLS_DC);
30 PHPAPI PHP_FUNCTION(dl);
H A Dexec.c103 PHPAPI int php_exec(int type, char *cmd, zval *array, zval *return_value TSRMLS_DC) in php_exec()
288 PHPAPI char *php_escape_shell_cmd(char *str) in php_escape_shell_cmd()
393 PHPAPI char *php_escape_shell_arg(char *str) in php_escape_shell_arg()
H A Dexec.h38 PHPAPI char *php_escape_shell_cmd(char *);
39 PHPAPI char *php_escape_shell_arg(char *);
40 PHPAPI int php_exec(int type, char *cmd, zval *array, zval *return_value TSRMLS_DC);
H A Dfile.c889 PHPAPI PHP_FUNCTION(fclose) in PHP_FUNCTION()
981 PHPAPI PHP_FUNCTION(feof) in PHP_FUNCTION()
1002 PHPAPI PHP_FUNCTION(fgets) in PHP_FUNCTION()
1053 PHPAPI PHP_FUNCTION(fgetc) in PHP_FUNCTION()
1081 PHPAPI PHP_FUNCTION(fgetss) in PHP_FUNCTION()
1173 PHPAPI PHP_FUNCTION(fwrite) in PHP_FUNCTION()
1211 PHPAPI PHP_FUNCTION(fflush) in PHP_FUNCTION()
1233 PHPAPI PHP_FUNCTION(rewind) in PHP_FUNCTION()
1253 PHPAPI PHP_FUNCTION(ftell) in PHP_FUNCTION()
1275 PHPAPI PHP_FUNCTION(fseek) in PHP_FUNCTION()
[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 Dfilestat.c389 PHPAPI int php_get_gid_by_name(const char *name, gid_t *gid TSRMLS_DC) in php_get_gid_by_name()
526 PHPAPI uid_t php_get_uid_by_name(const char *name, uid_t *uid TSRMLS_DC) in php_get_uid_by_name()
803 PHPAPI void php_clear_stat_cache(zend_bool clear_realpath_cache, const char *filename, int filename… in php_clear_stat_cache()
849 PHPAPI void php_stat(const char *filename, php_stat_len filename_length, int type, zval *return_val… in php_stat()
H A Dflock_compat.c41 PHPAPI int flock(int fd, int operation) in flock()
47 PHPAPI int php_flock(int fd, int operation) in php_flock()
H A Dflock_compat.h28 PHPAPI int php_flock(int fd, int operation);
35 PHPAPI int flock(int fd, int operation);
H A Dftp_fopen_wrapper.c1190 PHPAPI php_stream_wrapper php_stream_ftp_wrapper = {
H A Dhead.c66 PHPAPI int php_header(TSRMLS_D) in php_header()
76 PHPAPI int php_setcookie(char *name, int name_len, char *value, int value_len, time_t expires, char… in php_setcookie()
H A Dhead.h33 PHPAPI int php_header(TSRMLS_D);
34 PHPAPI int php_setcookie(char *name, int name_len, char *value, int value_len, time_t expires, char…
H A Dhtml.c351 PHPAPI unsigned int php_next_utf8_char( in php_next_utf8_char()
1086 PHPAPI char *php_unescape_html_entities(unsigned char *old, size_t oldlen, size_t *newlen, int all,… in php_unescape_html_entities()
1126 PHPAPI char *php_escape_html_entities(unsigned char *old, size_t oldlen, size_t *newlen, int all, i… in php_escape_html_entities()
1214 PHPAPI char *php_escape_html_entities_ex(unsigned char *old, size_t oldlen, size_t *newlen, int all… in php_escape_html_entities_ex()
H A Dhtml.h57 PHPAPI char *php_escape_html_entities(unsigned char *old, size_t oldlen, size_t *newlen, int all, i…
58 PHPAPI char *php_escape_html_entities_ex(unsigned char *old, size_t oldlen, size_t *newlen, int all…
59 PHPAPI char *php_unescape_html_entities(unsigned char *old, size_t oldlen, size_t *newlen, int all,…
60 PHPAPI unsigned int php_next_utf8_char(const unsigned char *str, size_t str_len, size_t *cursor, in…
H A Dhttp.c28 PHPAPI int php_url_encode_hash_ex(HashTable *ht, smart_str *formstr, in php_url_encode_hash_ex()
H A Dhttp_fopen_wrapper.c966 PHPAPI php_stream_wrapper php_stream_http_wrapper = {

Completed in 123 milliseconds

12345678910