Home
last modified time | relevance | path

Searched refs:PHPAPI (Results 26 – 50 of 237) sorted by relevance

12345678910

/php-src/main/streams/
H A Dphp_stream_transport.h35 PHPAPI int php_stream_xport_unregister(const char *protocol);
58 PHPAPI int php_stream_xport_bind(php_stream *stream,
64 PHPAPI int php_stream_xport_connect(php_stream *stream,
73 PHPAPI int php_stream_xport_listen(php_stream *stream,
80 PHPAPI int php_stream_xport_accept(php_stream *stream, php_stream **client,
88 PHPAPI int php_stream_xport_get_name(php_stream *stream, int want_peer,
100 PHPAPI int php_stream_xport_recvfrom(php_stream *stream, char *buf, size_t buflen,
117 PHPAPI int php_stream_xport_shutdown(php_stream *stream, stream_shutdown_t how);
195 PHPAPI int php_stream_xport_crypto_enable(php_stream *stream, int activate);
214 PHPAPI HashTable *php_stream_xport_get_hash(void);
[all …]
H A Dphp_stream_glob_wrapper.h17 PHPAPI extern const php_stream_wrapper php_glob_stream_wrapper;
18 PHPAPI extern const php_stream_ops php_glob_stream_ops;
22 PHPAPI char* _php_glob_stream_get_path(php_stream *stream, size_t *plen STREAMS_DC);
25 PHPAPI char* _php_glob_stream_get_pattern(php_stream *stream, size_t *plen STREAMS_DC);
28 PHPAPI int _php_glob_stream_get_count(php_stream *stream, int *pflags STREAMS_DC);
/php-src/main/
H A Dphp_streams.h29 PHPAPI int php_file_le_stream(void);
30 PHPAPI int php_file_le_pstream(void);
31 PHPAPI int php_file_le_stream_filter(void);
318 PHPAPI zend_off_t _php_stream_tell(php_stream *stream);
338 PHPAPI bool _php_stream_eof(php_stream *stream);
341 PHPAPI int _php_stream_getc(php_stream *stream);
344 PHPAPI int _php_stream_putc(php_stream *stream, int c);
347 PHPAPI int _php_stream_flush(php_stream *stream, int closing);
350 PHPAPI int _php_stream_sync(php_stream *stream, bool data_only);
618 PHPAPI HashTable *_php_get_stream_filters_hash(void);
[all …]
H A Dphp_odbc_utils.h19 PHPAPI bool php_odbc_connstr_is_quoted(const char *str);
20 PHPAPI bool php_odbc_connstr_should_quote(const char *str);
21 PHPAPI size_t php_odbc_connstr_estimate_quote_length(const char *in_str);
22 PHPAPI size_t php_odbc_connstr_quote(char *out_str, const char *in_str, size_t out_str_size);
H A Dphp_network.h67 PHPAPI char *php_socket_strerror(long err, char *buf, size_t bufsize);
68 PHPAPI zend_string *php_socket_error_str(long err);
210 PHPAPI void _php_emit_fd_setsize_warning(int max_fd);
264 PHPAPI void php_network_freeaddresses(struct sockaddr **sal);
271 PHPAPI int php_network_connect_socket(php_socket_t sockfd,
296 PHPAPI int php_network_get_sock_name(php_socket_t sock,
302 PHPAPI int php_network_get_peer_name(php_socket_t sock,
309 PHPAPI socklen_t php_sockaddr_size(php_sockaddr_storage *addr);
320 PHPAPI extern const php_stream_ops php_stream_socket_ops;
329 PHPAPI void php_network_populate_name_from_sockaddr(
[all …]
H A Dphp_syslog.h38 PHPAPI void php_syslog_str(int priority, const zend_string* message);
39 PHPAPI void php_syslog(int, const char *format, ...);
40 PHPAPI void php_openlog(const char *, int, int);
41 PHPAPI void php_closelog(void);
H A Dreentrancy.c55 PHPAPI char *php_ctime_r(const time_t *clock, char *buf) in php_ctime_r()
62 PHPAPI char *php_asctime_r(const struct tm *tm, char *buf) in php_asctime_r()
78 PHPAPI struct tm *php_localtime_r(const time_t *const timep, struct tm *p_tm) in php_localtime_r()
85 PHPAPI char *php_ctime_r(const time_t *clock, char *buf) in php_ctime_r()
92 PHPAPI char *php_asctime_r(const struct tm *tm, char *buf) in php_asctime_r()
99 PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm) in php_gmtime_r()
110 PHPAPI struct tm *php_localtime_r(const time_t *const timep, struct tm *p_tm) in php_localtime_r()
131 PHPAPI char *php_ctime_r(const time_t *clock, char *buf) in php_ctime_r()
152 PHPAPI char *php_asctime_r(const struct tm *tm, char *buf) in php_asctime_r()
173 PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm) in php_gmtime_r()
[all …]
H A Dphp_open_temporary_file.h32 PHPAPI FILE *php_open_temporary_file(const char *dir, const char *pfx, zend_string **opened_path_p);
33 PHPAPI int php_open_temporary_fd_ex(const char *dir, const char *pfx, zend_string **opened_path_p, …
34 PHPAPI int php_open_temporary_fd(const char *dir, const char *pfx, zend_string **opened_path_p);
35 PHPAPI const char *php_get_temporary_directory(void);
/php-src/ext/mysqlnd/
H A Dmysqlnd_reverse_api.h28 PHPAPI void mysqlnd_reverse_api_init(void);
29 PHPAPI void mysqlnd_reverse_api_end(void);
31 PHPAPI HashTable * mysqlnd_reverse_api_get_api_list(void);
33 PHPAPI void mysqlnd_reverse_api_register_api(const MYSQLND_REVERSE_API * apiext);
34 PHPAPI MYSQLND * zval_to_mysqlnd(zval * zv, const unsigned int client_api_capabilities, unsigned in…
H A Dmysqlnd_block_alloc.h21 PHPAPI MYSQLND_MEMORY_POOL * mysqlnd_mempool_create(size_t arena_size);
22 PHPAPI void mysqlnd_mempool_destroy(MYSQLND_MEMORY_POOL * pool);
23 PHPAPI void mysqlnd_mempool_save_state(MYSQLND_MEMORY_POOL * pool);
24 PHPAPI void mysqlnd_mempool_restore_state(MYSQLND_MEMORY_POOL * pool);
H A Dmysqlnd_connection.h21 PHPAPI extern const char * const mysqlnd_out_of_sync;
22 PHPAPI extern const char * const mysqlnd_server_gone;
23 PHPAPI extern const char * const mysqlnd_out_of_memory;
43 PHPAPI void mysqlnd_error_info_init(MYSQLND_ERROR_INFO * const info, const bool persistent);
44 PHPAPI void mysqlnd_error_info_free_contents(MYSQLND_ERROR_INFO * const info);
49 PHPAPI void mysqlnd_connection_state_init(struct st_mysqlnd_connection_state * const state);
H A Dmysqlnd_reverse_api.c30 PHPAPI void
39 PHPAPI void
48 PHPAPI HashTable *
57 PHPAPI void
66 PHPAPI MYSQLND *
/php-src/ext/standard/
H A Durl_scanner_ex.h26 PHPAPI char *php_url_scanner_adapt_single_url(const char *url, size_t urllen, const char *name, con…
27 PHPAPI zend_result php_url_scanner_add_session_var(const char *name, size_t name_len, const char *v…
28 PHPAPI zend_result php_url_scanner_reset_session_var(zend_string *name, int encode);
29 PHPAPI zend_result php_url_scanner_reset_session_vars(void);
30 PHPAPI zend_result php_url_scanner_add_var(const char *name, size_t name_len, const char *value, si…
31 PHPAPI zend_result php_url_scanner_reset_var(zend_string *name, int encode);
32 PHPAPI zend_result php_url_scanner_reset_vars(void);
H A Dphp_array.h28 PHPAPI int php_array_merge(HashTable *dest, HashTable *src);
29 PHPAPI int php_array_merge_recursive(HashTable *dest, HashTable *src);
30 PHPAPI int php_array_replace_recursive(HashTable *dest, HashTable *src);
31 PHPAPI int php_multisort_compare(const void *a, const void *b);
32 PHPAPI zend_long php_count_recursive(HashTable *ht);
34 PHPAPI bool php_array_data_shuffle(php_random_algo_with_state engine, zval *array);
35 PHPAPI bool php_array_pick_keys(php_random_algo_with_state engine, zval *input, zend_long num_req, …
H A Dphp_password.h54 PHPAPI int php_password_algo_register(const char*, const php_password_algo*);
55 PHPAPI void php_password_algo_unregister(const char*);
56 PHPAPI const php_password_algo* php_password_algo_default(void);
57 PHPAPI zend_string *php_password_algo_extract_ident(const zend_string*);
58 PHPAPI const php_password_algo* php_password_algo_find(const zend_string*);
60 PHPAPI const php_password_algo* php_password_algo_identify_ex(const zend_string*, const php_passwor…
H A Dmd5.h21 PHPAPI void make_digest(char *md5str, const unsigned char *digest);
22 PHPAPI void make_digest_ex(char *md5str, const unsigned char *digest, int len);
44 PHPAPI void PHP_MD5InitArgs(PHP_MD5_CTX *context, ZEND_ATTRIBUTE_UNUSED HashTable *args);
45 PHPAPI void PHP_MD5Update(PHP_MD5_CTX *ctx, const void *data, size_t size);
46 PHPAPI void PHP_MD5Final(unsigned char *result, PHP_MD5_CTX *ctx);
H A Ddl.h22 PHPAPI int php_load_extension(const char *filename, int type, int start_now);
23 PHPAPI void php_dl(const char *file, int type, zval *return_value, int start_now);
24 PHPAPI void *php_load_shlib(const char *path, char **errp);
27 PHPAPI PHP_FUNCTION(dl);
H A Dsha1.h29 PHPAPI void PHP_SHA1InitArgs(PHP_SHA1_CTX *, ZEND_ATTRIBUTE_UNUSED HashTable *);
30 PHPAPI void PHP_SHA1Update(PHP_SHA1_CTX *, const unsigned char *, size_t);
31 PHPAPI void PHP_SHA1Final(unsigned char[20], PHP_SHA1_CTX *);
32 PHPAPI void make_sha1_digest(char *sha1str, const unsigned char *digest);
H A Dphp_fopen_wrappers.h24 extern PHPAPI const php_stream_wrapper php_stream_http_wrapper;
25 extern PHPAPI const php_stream_wrapper php_stream_ftp_wrapper;
26 extern PHPAPI const php_stream_wrapper php_stream_php_wrapper;
27 extern PHPAPI /*const*/ php_stream_wrapper php_plain_files_wrapper;
/php-src/ext/gd/
H A Dphp_gd.h99 PHPAPI extern const char php_sig_gif[3];
100 PHPAPI extern const char php_sig_jpg[3];
101 PHPAPI extern const char php_sig_png[8];
102 PHPAPI extern const char php_sig_bmp[2];
103 PHPAPI extern const char php_sig_riff[4];
104 PHPAPI extern const char php_sig_webp[4];
105 PHPAPI extern const char php_sig_avif[4];
/php-src/ext/spl/
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;
H A Dspl_directory.h22 extern PHPAPI zend_class_entry *spl_ce_SplFileInfo;
23 extern PHPAPI zend_class_entry *spl_ce_DirectoryIterator;
24 extern PHPAPI zend_class_entry *spl_ce_FilesystemIterator;
25 extern PHPAPI zend_class_entry *spl_ce_RecursiveDirectoryIterator;
26 extern PHPAPI zend_class_entry *spl_ce_GlobIterator;
27 extern PHPAPI zend_class_entry *spl_ce_SplFileObject;
28 extern PHPAPI zend_class_entry *spl_ce_SplTempFileObject;
38 PHPAPI zend_string *spl_filesystem_object_get_path(const spl_filesystem_object *intern);
H A Dspl_observer.h29 extern PHPAPI zend_class_entry *spl_ce_SplObserver;
30 extern PHPAPI zend_class_entry *spl_ce_SplSubject;
31 extern PHPAPI zend_class_entry *spl_ce_SplObjectStorage;
32 extern PHPAPI zend_class_entry *spl_ce_MultipleIterator;
/php-src/ext/session/
H A Dphp_session.h254 PHPAPI zend_result php_session_destroy(void);
255 PHPAPI void php_add_session_var(zend_string *name);
257 PHPAPI zval *php_get_session_var(zend_string *name);
266 PHPAPI zend_result php_session_start(void);
267 PHPAPI zend_result php_session_flush(int write);
268 PHPAPI php_session_status php_get_session_status(void);
273 PHPAPI zend_result php_session_valid_key(const char *key);
274 PHPAPI zend_result php_session_reset_id(void);
308 PHPAPI ZEND_EXTERN_MODULE_GLOBALS(ps)
312 extern PHPAPI zend_class_entry *php_session_class_entry;
[all …]
/php-src/win32/
H A Dtime.h47 PHPAPI extern int gettimeofday(struct timeval *time_Info, struct timezone *timezone_Info);
50 PHPAPI extern int setitimer(int which, const struct itimerval *value,
53 PHPAPI int nanosleep( const struct timespec * rqtp, struct timespec * rmtp );
55 PHPAPI int usleep(unsigned int useconds);

Completed in 67 milliseconds

12345678910