/curl/lib/ |
H A D | curl_threads.c | 47 unsigned int (*func)(void *); member 54 unsigned int (*func)(void *) = ac->func; in curl_thread_create_thunk() local 59 (*func)(real_arg); in curl_thread_create_thunk() 64 curl_thread_t Curl_thread_create(unsigned int (*func) (void *), void *arg) in Curl_thread_create() 71 ac->func = func; in Curl_thread_create() 111 (CURL_STDCALL *func) (void *), in Curl_thread_create() 122 thread_handle = CreateThread(NULL, 0, func, arg, 0, NULL); in Curl_thread_create() 124 thread_handle = _beginthreadex(NULL, 0, func, arg, 0, NULL); in Curl_thread_create()
|
H A D | warnless.h | 33 #define CURLX_FUNCTION_CAST(target_type, func) \ argument 34 (target_type)(void (*) (void))(func)
|
H A D | curl_threads.h | 61 (CURL_STDCALL *func) (void *),
|
H A D | memdebug.c | 107 static bool countcheck(const char *func, int line, const char *source) in countcheck() argument 115 source, line, func); in countcheck() 118 source, line, func); in countcheck()
|
H A D | hash.c | 349 void (*func)(void *)) 372 if(func) 373 func(he->ptr);
|
H A D | hash.h | 112 void (*func)(void *));
|
H A D | conncache.c | 421 int (*func)(struct Curl_easy *data, in cpool_foreach() 445 if(1 == func(data, conn, param)) { in cpool_foreach()
|
/curl/tests/data/ |
H A D | test1185 | 28 int a = func (); 29 int b = func( b); 30 int b = func(b ); 31 func(a, b , c); 37 func(a, b,c); 49 func() ; 56 func(); 60 func(1); 112 func(a, b,c); 124 func() ; [all …]
|
/curl/docs/examples/ |
H A D | adddocsref.pl | 45 my ($prefix, $func) = ($1, $2); 46 print NEW "$prefix/* $docroot/$func.html */\n";
|
/curl/include/curl/ |
H A D | typecheck-gcc.h | 533 #define curlcheck_cb_compatible(func, type) \ argument 534 (__builtin_types_compatible_p(__typeof__(func), type) || \ 535 __builtin_types_compatible_p(__typeof__(func) *, type))
|
/curl/tests/ |
H A D | ftpserver.pl | 1644 my $func = $commandfunc{"FETCH"}; 1645 if($func) { 1646 &$func($args, $command); 3339 my $func = $commandfunc{uc($FTPCMD)}; 3340 if($func) { 3341 &$func($FTPARG, $FTPCMD);
|
/curl/docs/libcurl/opts/ |
H A D | CURLOPT_TRAILERFUNCTION.md | 27 curl_trailer_callback *func);
|
H A D | CURLMOPT_PUSHFUNCTION.md | 33 curl_push_callback func);
|
/curl/tests/libtest/ |
H A D | mk-lib1521.pl | 528 print $fh "${fpref} &func);\n$fcheck";
|
/curl/lib/vssh/ |
H A D | libssh.c | 341 curl_sshkeycallback func = in myssh_is_known() local 463 if(func) { /* use callback to determine action */ in myssh_is_known() 500 rc = func(data, knownkeyp, /* from the knownhosts file */ in myssh_is_known()
|
H A D | libssh2.c | 496 curl_sshkeycallback func = in ssh_knownhost() local 584 rc = func(data, knownkeyp, /* from the knownhosts file */ in ssh_knownhost()
|
/curl/lib/vtls/ |
H A D | schannel.c | 1442 traverse_cert_store(const CERT_CONTEXT *context, Read_crt_func func, in traverse_cert_store() argument 1460 should_continue = func(current_context, reverse_order, arg); in traverse_cert_store()
|
/curl/docs/ |
H A D | FAQ | 1330 static size_t YourClass::func(void *buffer, size_t sz, size_t n, void *f) 1337 curl_easy_setopt(hcurl, CURLOPT_WRITEFUNCTION, YourClass::func);
|