/curl/lib/ |
H A D | curl_threads.h | 33 # define Curl_mutex_init(m) pthread_mutex_init(m, NULL) argument 34 # define Curl_mutex_acquire(m) pthread_mutex_lock(m) argument 35 # define Curl_mutex_release(m) pthread_mutex_unlock(m) argument 36 # define Curl_mutex_destroy(m) pthread_mutex_destroy(m) argument 44 # define Curl_mutex_init(m) InitializeCriticalSection(m) argument 46 # define Curl_mutex_init(m) InitializeCriticalSectionEx(m, 0, 1) argument 48 # define Curl_mutex_acquire(m) EnterCriticalSection(m) argument 49 # define Curl_mutex_release(m) LeaveCriticalSection(m) argument 50 # define Curl_mutex_destroy(m) DeleteCriticalSection(m) argument
|
H A D | easy_lock.h | 42 #define curl_simple_lock_lock(m) AcquireSRWLockExclusive(m) argument 43 #define curl_simple_lock_unlock(m) ReleaseSRWLockExclusive(m) argument 102 #define curl_simple_lock_lock(m) pthread_mutex_lock(m) argument 103 #define curl_simple_lock_unlock(m) pthread_mutex_unlock(m) argument
|
H A D | multi.c | 475 CURLMcode curl_multi_add_handle(CURLM *m, CURL *d) in curl_multi_add_handle() 776 CURLMcode curl_multi_remove_handle(CURLM *m, CURL *d) in curl_multi_remove_handle() 1145 CURLMcode curl_multi_fdset(CURLM *m, in curl_multi_fdset() 1187 CURLMcode curl_multi_waitfds(CURLM *m, in curl_multi_waitfds() 1513 CURLMcode curl_multi_wakeup(CURLM *m) 3079 CURLMcode curl_multi_cleanup(CURLM *m) 3157 CURLMsg *curl_multi_info_read(CURLM *m, int *msgs_in_queue) 3623 CURLMcode curl_multi_setopt(CURLM *m, 3774 CURLMcode curl_multi_timeout(CURLM *m, 4055 CURLMcode curl_multi_assign(CURLM *m, curl_socket_t s, [all …]
|
/curl/tests/libtest/ |
H A D | lib1508.c | 33 CURLM *m = NULL; in test() local
|
H A D | lib1939.c | 42 CURLMcode m; in test() local
|
H A D | lib503.c | 43 CURLM *m = NULL; in test() local
|
H A D | lib502.c | 39 CURLM *m = NULL; in test() local
|
H A D | lib564.c | 39 CURLM *m = NULL; in test() local
|
H A D | lib533.c | 41 CURLM *m = NULL; in test() local
|
H A D | lib573.c | 40 CURLM *m = NULL; in test() local
|
H A D | lib526.c | 60 CURLM *m = NULL; in test() local
|
H A D | lib525.c | 41 CURLM *m = NULL; in test() local
|
H A D | lib504.c | 43 CURLM *m = NULL; in test() local
|
H A D | lib677.c | 60 struct CURLMsg *m = curl_multi_info_read(mcurl, &i); in test() local
|
H A D | lib1506.c | 39 CURLM *m = NULL; in test() local
|
H A D | lib2402.c | 39 CURLM *m = NULL; in test() local
|
H A D | lib2404.c | 39 CURLM *m = NULL; in test() local
|
H A D | lib2502.c | 40 CURLM *m = NULL; in test() local
|
H A D | lib555.c | 84 CURLM *m = NULL; in test() local
|
H A D | lib1515.c | 41 static CURLcode do_one_request(CURLM *m, char *URL, char *resolve) in do_one_request()
|
/curl/tests/server/ |
H A D | util.h | 51 #define perror(m) win32_perror(m) argument
|
/curl/src/ |
H A D | tool_formparse.c | 43 struct tool_mime *m = (struct tool_mime *) calloc(1, sizeof(*m)); in tool_mime_new() local 65 struct tool_mime *m = NULL; in tool_mime_new_data() local 84 struct tool_mime *m = NULL; in tool_mime_new_filedata() local 238 static CURLcode tool2curlparts(CURL *curl, struct tool_mime *m, in tool2curlparts() 306 CURLcode tool2curlmime(CURL *curl, struct tool_mime *m, curl_mime **mime) in tool2curlmime() 706 #define SET_TOOL_MIME_PTR(m, field) \ argument
|
H A D | tool_doswin.c | 52 # define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR) argument 54 # define S_ISCHR(m) (0) /* cannot tell if file is a device */ argument
|
/curl/docs/examples/ |
H A D | chkspeed.c | 103 long m = strtol((*argv) + 3, NULL, 10); in main() local
|
H A D | http2-pushinmemory.c | 131 struct CURLMsg *m; in main() local
|