Lines Matching refs:curl_socket_t
34 curl_socket_t *sockets;
47 static void removeFd(struct Sockets* sockets, curl_socket_t fd, int mention) in removeFd()
58 sizeof(curl_socket_t) * (sockets->count - (i + 1))); in removeFd()
67 static void addFd(struct Sockets* sockets, curl_socket_t fd, const char *what) in addFd()
79 sockets->sockets = malloc(sizeof(curl_socket_t) * 20U); in addFd()
85 curl_socket_t *oldptr = sockets->sockets; in addFd()
86 sockets->sockets = realloc(oldptr, sizeof(curl_socket_t) * in addFd()
105 static int curlSocketCallback(CURL *easy, curl_socket_t s, int action, in curlSocketCallback()
189 curl_socket_t *maxFd) in updateFdSet()
200 static void notifyCurl(CURLM *curl, curl_socket_t s, int evBitmask, in notifyCurl()
306 curl_socket_t maxFd = 0; in test()