Home
last modified time | relevance | path

Searched refs:int (Results 1 – 25 of 532) sorted by relevance

12345678910>>...22

/curl/tests/data/
H A Dtest118526 int tab;
28 int a = func ();
33 int hello()
55 void startfunc(int a, int b) {
66 int foo=bar;
67 int foo= bar;
68 int foo = bar;
73 int a = sizeof int;
92 int tab;
131 void startfunc(int a, int b) {
[all …]
/curl/docs/libcurl/opts/
H A DCURLOPT_SOCKOPTDATA.md41 static int sockopt_callback(void *clientp, curl_socket_t curlfd,
44 int val = *(int *)clientp;
45 setsockopt((int)curlfd, SOL_SOCKET, SO_RCVBUF,
50 int main(void)
55 int recvbuffersize = 256 * 1024;
H A DCURLMOPT_PUSHDATA.md47 int push_callback(CURL *parent,
54 int *transfers = (int *)clientp;
73 int main(void)
75 int counter;
H A DCURLOPT_PREREQDATA.md46 static int prereq_callback(void *clientp,
49 int conn_primary_port,
50 int conn_local_port)
56 int main(void)
H A DCURLOPT_SEEKDATA.md46 int our_fd;
49 static int seek_cb(void *clientp, curl_off_t offset, int origin)
56 int main(void)
H A DCURLOPT_CHUNK_BGN_FUNCTION.md28 unsigned int perm;
29 int uid;
30 int gid;
32 long int hardlinks;
43 unsigned int flags;
52 int remains);
100 int remains)
134 int main()
H A DCURLOPT_PREREQFUNCTION.md30 int prereq_callback(void *clientp,
33 int conn_primary_port,
34 int conn_local_port);
98 static int prereq_callback(void *clientp,
101 int conn_primary_port,
102 int conn_local_port)
108 int main(void)
H A DCURLOPT_SSH_HOSTKEYFUNCTION.md25 int keycallback(void *clientp,
26 int keytype,
71 int hostkeycb(void *clientp, /* passed with CURLOPT_SSH_HOSTKEYDATA */
72 int keytype, /* CURLKHTYPE */
80 int main(void)
H A DCURLOPT_FNMATCH_FUNCTION.md25 int fnmatch_callback(void *ptr,
53 extern int string_match(const char *s1, const char *s2);
58 static int my_fnmatch(void *clientp,
69 int main(void)
H A DCURLOPT_CLOSESOCKETFUNCTION.md24 int closesocket_callback(void *clientp, curl_socket_t item);
58 static int closesocket(void *clientp, curl_socket_t item)
63 printf("libcurl wants to close %d now\n", (int)item);
67 int main(void)
H A DCURLOPT_OPENSOCKETFUNCTION.md30 int family;
31 int socktype;
32 int protocol;
33 unsigned int addrlen;
97 static int sockopt_callback(void *clientp, curl_socket_t curlfd,
104 int main(void)
109 extern int sockfd; /* the already connected one */
H A DCURLOPT_SEEKFUNCTION.md32 int seek_callback(void *clientp, curl_off_t offset, int origin);
77 int our_fd;
79 static int seek_cb(void *clientp, curl_off_t offset, int origin)
86 int main(void)
H A DCURLOPT_CLOSESOCKETDATA.md47 static int closesocket(void *clientp, curl_socket_t item)
52 printf("libcurl wants to close %d now\n", (int)item);
56 int main(void)
H A DCURLOPT_IOCTLDATA.md44 int fd; /* our file descriptor */
47 static curlioerr ioctl_callback(CURL *handle, int cmd, void *clientp)
56 int main(void)
/curl/docs/libcurl/
H A Dcurl_multi_wakeup.md47 extern int time_to_die(void);
48 extern int set_something_to_signal_thread_1_to_exit(void);
49 extern int decide_to_stop_thread1();
51 int main(void)
55 int still_running;
63 int numfds;
H A Dcurl_multi_socket_all.md28 int *running_handles);
49 int main(void)
51 int running;
52 int rc;
H A Dcurl_pushheader_byname.md46 static int push_cb(CURL *parent,
53 int *transfers = (int *)clientp;
72 int main(void)
74 int counter;
H A Dcurl_easy_unescape.md25 int inlength, int *outlength);
40 strings containing %00. Since this is a pointer to an *int* type, it can
55 int main(void)
59 int decodelen;
H A Dcurl_multi_wait.md27 unsigned int extra_nfds,
28 int timeout_ms,
29 int *numfds);
88 int main(void)
92 int still_running;
99 int numfds;
H A Dcurl_multi_poll.md28 unsigned int extra_nfds,
29 int timeout_ms,
30 int *numfds);
95 int main(void)
99 int still_running = 0;
100 int myfd; /* this is our own file descriptor */
107 int numfds;
/curl/CMake/
H A DOtherTests.cmake56 int main(void)
58 int flag = MSG_NOSIGNAL;
68 int main(void)
86 int main(void)
94 int rc;
136 int main(void)
147 int main(void)
155 int main(void)
179 int main(void)
/curl/tests/http/
H A Dscorecard.py51 verbose: int, argument
52 curl_verbose: int, argument
53 download_parallel: int = 0): argument
220 def downloads(self, proto: str, count: int, argument
221 fsizes: List[int]) -> Dict[str, Any]: argument
377 def uploads(self, proto: str, count: int, argument
378 fsizes: List[int]) -> Dict[str, Any]: argument
422 max_parallel: int = 1): argument
508 download_count: int = 50, argument
510 upload_count: int = 50, argument
[all …]
/curl/tests/http/testenv/
H A Dports.py34 def alloc_ports(port_specs: Dict[str, int]) -> Dict[str, int]: argument
H A Denv.py423 def verbose(self) -> int:
471 def http_port(self) -> int:
475 def https_port(self) -> int:
479 def h3_port(self) -> int:
483 def proxy_port(self) -> int:
487 def proxys_port(self) -> int:
491 def ftp_port(self) -> int:
495 def ftps_port(self) -> int:
499 def h2proxys_port(self) -> int:
515 def caddy_http_port(self) -> int:
[all …]
/curl/tests/
H A Dconftest.py56 parser.addoption("--repeat", action="store", type=int, default=1,
62 count = int(metafunc.config.getoption("repeat"))

Completed in 106 milliseconds

12345678910>>...22