Home
last modified time | relevance | path

Searched defs:buf (Results 76 – 100 of 235) sorted by relevance

12345678910

/PHP-7.4/ext/standard/
H A Dinfo.c71 char *buf; in php_info_printf() local
602 void php_get_windows_cpu(char *buf, int bufsize) in php_get_windows_cpu()
705 struct utsname buf; in php_get_uname() local
H A Dpack.c983 zend_string *buf; in PHP_FUNCTION() local
1006 ZSTR_VAL(buf)[opos] = cc; in PHP_FUNCTION() local
1015 ZSTR_VAL(buf)[len] = '\0'; in PHP_FUNCTION() local
H A Durl_scanner_ex.h43 smart_str buf; member
H A Dfile.c1014 char *buf = NULL; in PHP_FUNCTION() local
1065 char buf[2]; in PHP_FUNCTION() local
1096 char *buf = NULL, *retval; in PHP_FUNCTION() local
1145 char *buf, *format; in PHP_FUNCTION() local
1993 char *buf; in PHP_FUNCTION() local
2082 …tream, char delimiter, char enclosure, int escape_char, size_t buf_len, char *buf, zval *return_va… in php_fgetcsv()
H A Dnet.c180 char *buf = php_win32_error_to_msg(GetLastError()); in PHP_FUNCTION() local
/PHP-7.4/ext/gd/libgd/
H A Dgd_io_dp.c201 dynamicPutbuf (struct gdIOCtx *ctx, const void *buf, int size) in dynamicPutbuf()
230 static int dynamicGetbuf (gdIOCtxPtr ctx, void *buf, int len) in dynamicGetbuf()
H A Dgdtest.c399 freadWrapper (void *context, char *buf, int len) in freadWrapper()
/PHP-7.4/Zend/
H A Dzend_smart_str.h136 char buf[32]; in smart_str_append_long_ex() local
142 char buf[32]; in smart_str_append_unsigned_ex() local
H A Dzend.c189 smart_string buf = {0}; in ZEND_INI_END() local
241 smart_str buf = {0}; in zend_vstrpprintf() local
284 static void print_hash(smart_str *buf, HashTable *ht, int indent, zend_bool is_object) /* {{{ */ in print_hash()
433 static void zend_print_zval_r_to_buf(smart_str *buf, zval *expr, int indent) /* {{{ */ in zend_print_zval_r_to_buf()
497 smart_str buf = {0}; in zend_print_zval_r_to_str() local
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_webdata_transfer.c165 smart_str buf = {0}; in phpdbg_webdata_compress() local
/PHP-7.4/ext/hash/
H A Dhash.c151 char buf[1024]; in php_hash_do_hash() local
283 char buf[1024]; in php_hash_do_hash_hmac() local
460 char buf[1024]; in PHP_FUNCTION() local
489 char buf[1024]; in PHP_FUNCTION() local
935 char buf[128]; in mhash_init() local
/PHP-7.4/ext/tidy/
H A Dtidy.c526 static void* TIDY_CALL php_tidy_realloc(void *buf, size_t len) in php_tidy_realloc()
531 static void TIDY_CALL php_tidy_free(void *buf) in php_tidy_free()
646 TidyBuffer buf; in php_tidy_quick_repair() local
811 TidyBuffer buf; in tidy_node_cast_handler() local
878 TidyBuffer buf; in tidy_add_default_properties() local
1052 TidyBuffer buf; in php_tidy_parse_string() local
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_php_trace.c47 char buf[buf_size]; in fpm_php_trace_dump() local
H A Dfpm_stdio.c121 char buf[max_buf_size]; local
/PHP-7.4/ext/sockets/
H A Dsockets.c572 static int php_read(php_socket *sock, void *buf, size_t maxlen, int flags)
638 const char *buf; local
1704 zval *php_sock_res, *buf; local
1751 char *buf; local
1908 char *buf, *addr; local
2841 char *buf = php_win32_error_to_msg(err); local
2913 char *buf = php_win32_error_to_msg(err); local
/PHP-7.4/ext/soap/
H A Dphp_sdl.c1189 #define WSDL_CACHE_GET(ret,type,buf) memcpy(&ret,*buf,sizeof(type)); *buf += sizeof(type); argument
1190 #define WSDL_CACHE_GET_INT(ret,buf) ret = ((unsigned char)(*buf)[0])|((unsigned char)(*buf)[1]<<… argument
1191 #define WSDL_CACHE_GET_1(ret,type,buf) ret = (type)(**buf); (*buf)++; argument
1192 #define WSDL_CACHE_GET_N(ret,n,buf) memcpy(ret,*buf,n); *buf += n; argument
1193 #define WSDL_CACHE_SKIP(n,buf) *buf += n; argument
1195 #define WSDL_CACHE_PUT_INT(val,buf) smart_str_appendc(buf,(char)(val & 0xff)); \ argument
1199 #define WSDL_CACHE_PUT_1(val,buf) smart_str_appendc(buf,val); argument
1200 #define WSDL_CACHE_PUT_N(val,n,buf) smart_str_appendl(buf,(char*)val,n); argument
1552 char *in, *buf; in get_sdl_from_cache() local
2110 smart_str buf = {0}; in add_sdl_to_cache() local
/PHP-7.4/ext/phar/
H A Ddirstream.c92 static ssize_t phar_dir_read(php_stream *stream, char *buf, size_t count) /* {{{ */ in phar_dir_read()
121 static ssize_t phar_dir_write(php_stream *stream, const char *buf, size_t count) /* {{{ */ in phar_dir_write()
H A Dutil.c1476 unsigned char buf[1024]; in phar_verify_signature() local
1771 unsigned char buf[1024]; in phar_create_signature() local
1977 char *buf = estrndup((char *) Z_PTR(entry->metadata), entry->metadata_len); in phar_update_cached_entry() local
2023 char *buf = estrndup((char *) Z_PTR(phar->metadata), phar->metadata_len); in phar_copy_cached_phar() local
/PHP-7.4/ext/pdo_oci/
H A Doci_statement.c411 char buf[8192]; in oci_stmt_param_hook() local
637 static ssize_t oci_blob_write(php_stream *stream, const char *buf, size_t count) in oci_blob_write()
657 static size_t oci_blob_read(php_stream *stream, char *buf, size_t count) in oci_blob_read()
/PHP-7.4/main/
H A Dmain.c952 PHPAPI size_t php_write(void *buf, size_t size) in php_write()
1220 char *buf = php_win32_error_to_msg(error); in php_win32_docref1_from_error() local
1233 char *buf = php_win32_error_to_msg(error); in php_win32_docref2_from_error() local
1399 …zend_string *buf = php_escape_html_entities((unsigned char*)buffer, buffer_len, 0, ENT_COMPAT, get… in php_error_cb() local
2121 char buf[1024]; in dummy_invalid_parameter_handler() local
/PHP-7.4/ext/intl/collator/
H A Dcollator_is_numeric.c71 char buf[64], *numbuf, *bufpos; in collator_u_strtod() local
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_ps_codec.c578 mysqlnd_stmt_execute_check_n_enlarge_buffer(zend_uchar **buf, zend_uchar **p, size_t * buf_len, zen… in mysqlnd_stmt_execute_check_n_enlarge_buffer()
797 mysqlnd_stmt_execute_store_param_values(MYSQLND_STMT_DATA * stmt, zval * copies, zend_uchar * buf, … in mysqlnd_stmt_execute_store_param_values()
869 mysqlnd_stmt_execute_store_params(MYSQLND_STMT * s, zend_uchar **buf, zend_uchar **p, size_t *buf_l… in mysqlnd_stmt_execute_store_params()
/PHP-7.4/main/streams/
H A Dtransports.c389 PHPAPI int php_stream_xport_recvfrom(php_stream *stream, char *buf, size_t buflen, in php_stream_xport_recvfrom()
458 PHPAPI int php_stream_xport_sendto(php_stream *stream, const char *buf, size_t buflen, in php_stream_xport_sendto()
/PHP-7.4/ext/bz2/
H A Dbz2.c136 static ssize_t php_bz2iop_read(php_stream *stream, char *buf, size_t count) in php_bz2iop_read()
166 static ssize_t php_bz2iop_write(php_stream *stream, const char *buf, size_t count) in php_bz2iop_write()
/PHP-7.4/ext/pdo_pgsql/
H A Dpgsql_driver.c127 static ssize_t pgsql_lob_write(php_stream *stream, const char *buf, size_t count) in pgsql_lob_write()
133 static ssize_t pgsql_lob_read(php_stream *stream, char *buf, size_t count) in pgsql_lob_read()
701 char *buf; in PHP_METHOD() local
933 zend_string *buf = strpprintf(0, ZEND_ULONG_FMT, (zend_long) lfd); in PHP_METHOD() local

Completed in 98 milliseconds

12345678910