Lines Matching refs:clientp
646 static size_t curl_progress(void *clientp, double dltotal, double dlnow, double ultotal, double uln… in curl_progress() argument
648 php_curl *ch = (php_curl *)clientp; in curl_progress()
653 …fprintf(stderr, "clientp = %x, dltotal = %f, dlnow = %f, ultotal = %f, ulnow = %f\n", clientp, dlt… in curl_progress()
684 static size_t curl_xferinfo(void *clientp, curl_off_t dltotal, curl_off_t dlnow, curl_off_t ultotal… in curl_xferinfo() argument
686 php_curl *ch = (php_curl *)clientp; in curl_xferinfo()
691 …fprintf(stderr, "clientp = %x, dltotal = %ld, dlnow = %ld, ultotal = %ld, ulnow = %ld\n", clientp,… in curl_xferinfo()
722 static int curl_prereqfunction(void *clientp, char *conn_primary_ip, char *conn_local_ip, int conn_… in curl_prereqfunction() argument
724 php_curl *ch = (php_curl *)clientp; in curl_prereqfunction()
776 static int curl_ssh_hostkeyfunction(void *clientp, int keytype, const char *key, size_t keylen) in curl_ssh_hostkeyfunction() argument
778 php_curl *ch = (php_curl *)clientp; in curl_ssh_hostkeyfunction()
783 …fprintf(stderr, "clientp = %x, keytype = %d, key = %s, keylen = %zu\n", clientp, keytype, key, key… in curl_ssh_hostkeyfunction()
922 static int curl_debug(CURL *handle, curl_infotype type, char *data, size_t size, void *clientp) /* … in curl_debug() argument
924 php_curl *ch = (php_curl *)clientp; in curl_debug()