Searched refs:easy (Results 1 - 25 of 97) sorted by relevance

1234

/macosx-10.10/CPANInternal-159.1/Log-Log4perl-1.40/eg/
H A DL4pResurrectable.pm2 use Log::Log4perl qw(:easy);
H A Dcolor11 use Log::Log4perl qw(:easy);
H A Dprototype21 use Log::Log4perl qw(:easy);
H A Dnewsyslog-test7 use Log::Log4perl qw(:easy);
/macosx-10.10/curl-83.1.2/curl/lib/
H A Deasyif.h26 * Prototypes for library-wide functions provided by easy.c
29 CURL_EXTERN CURLcode curl_easy_perform_ev(CURL *easy);
/macosx-10.10/curl-83.1.2/curl/tests/libtest/
H A Dlib536.c81 CURL *easy = NULL; local
90 easy_init(easy);
94 easy_setopt(easy, CURLOPT_WRITEFUNCTION, fwrite);
95 easy_setopt(easy, CURLOPT_FAILONERROR, 1L);
96 easy_setopt(easy, CURLOPT_URL, URL);
98 res_multi_add_handle(multi, easy);
110 curl_multi_remove_handle(multi, easy);
112 curl_easy_reset(easy);
114 easy_setopt(easy, CURLOPT_FAILONERROR, 1L);
115 easy_setopt(easy, CURLOPT_UR
[all...]
H A Dlib1502.c44 CURL* easy = NULL; local
70 easy_init(easy);
72 easy_setopt(easy, CURLOPT_URL, URL);
73 easy_setopt(easy, CURLOPT_HEADER, 1L);
74 easy_setopt(easy, CURLOPT_RESOLVE, dns_cache_list);
78 multi_add_handle(multi, easy);
115 curl_easy_cleanup(easy);
121 curl_multi_remove_handle(multi, easy);
123 curl_easy_cleanup(easy);
129 curl_easy_cleanup(easy);
[all...]
H A Dlib543.c34 CURL *easy; local
39 if ((easy = curl_easy_init()) == NULL) {
46 s = curl_easy_escape(easy, (char*)a, asize);
54 curl_easy_cleanup(easy);
H A Dlib597.c53 CURL *easy = NULL; local
68 easy_init(easy);
74 easy_setopt(easy, CURLOPT_VERBOSE, 1L);
77 easy_setopt(easy, CURLOPT_URL, URL);
81 easy_setopt(easy, CURLOPT_CONNECT_ONLY, 1L);
85 easy_setopt(easy, CURLOPT_CONNECT_ONLY, 0L);
86 easy_setopt(easy, CURLOPT_NOBODY, 1L);
87 easy_setopt(easy, CURLOPT_FORBID_REUSE, 1L);
90 multi_add_handle(multi, easy);
138 multi_remove_handle(multi, easy);
[all...]
H A Dlib591.c40 CURL *easy = NULL; local
66 easy_init(easy);
69 easy_setopt(easy, CURLOPT_VERBOSE, 1L);
72 easy_setopt(easy, CURLOPT_URL, URL);
75 easy_setopt(easy, CURLOPT_UPLOAD, 1L);
78 easy_setopt(easy, CURLOPT_READDATA, upload);
81 easy_setopt(easy, CURLOPT_FTPPORT, "-");
84 easy_setopt(easy, CURLOPT_ACCEPTTIMEOUT_MS,
89 multi_add_handle(multi, easy);
142 curl_easy_cleanup(easy);
[all...]
H A Dlibntlmconnect.c36 static CURL *easy[MAX_EASY_HANDLES]; variable
42 ssize_t idx = ((CURL **) data) - easy;
61 /* Get socket being used for this easy handle, otherwise CURL_SOCKET_BAD */
62 code = curl_easy_getinfo(easy[idx], CURLINFO_LASTSOCKET, &longdata);
76 /* Track relationship between this easy handle and the socket. */
78 /* An easy handle without previous socket, record the socket. */
82 /* An easy handle with a socket different to previously
116 easy[i] = NULL;
145 easy_init(easy[num_handles]);
149 easy_setopt(easy[num_handle
[all...]
/macosx-10.10/curl-83.1.2/curl/docs/examples/
H A Dhiperfifo.c35 of URL's and creates some new easy handles to fetch each URL via the
85 /* Information associated with a specific easy handle */
88 CURL *easy; member in struct:_ConnInfo
99 CURL *easy; member in struct:_SockInfo
148 /* Check for completed transfers, and remove their easy handles */
155 CURL *easy; local
161 easy = msg->easy_handle;
163 curl_easy_getinfo(easy, CURLINFO_PRIVATE, &conn);
164 curl_easy_getinfo(easy, CURLINFO_EFFECTIVE_URL, &eff_url);
166 curl_multi_remove_handle(g->multi, easy);
247 addsock(curl_socket_t s, CURL *easy, int action, GlobalInfo *g) argument
[all...]
H A Dghiper.c35 of URL's and creates some new easy handles to fetch each URL via the
79 /* Information associated with a specific easy handle */
81 CURL *easy; member in struct:_ConnInfo
91 CURL *easy; member in struct:_SockInfo
123 /* Check for completed transfers, and remove their easy handles */
130 CURL *easy; local
136 easy = msg->easy_handle;
138 curl_easy_getinfo(easy, CURLINFO_PRIVATE, &conn);
139 curl_easy_getinfo(easy, CURLINFO_EFFECTIVE_URL, &eff_url);
141 curl_multi_remove_handle(g->multi, easy);
237 addsock(curl_socket_t s, CURL *easy, int action, GlobalInfo *g) argument
[all...]
H A Dasiohiper.cpp37 * When running, the program creates an easy handle for a URL and
68 /* Information associated with a specific easy handle */
71 CURL *easy; member in struct:_ConnInfo
130 /* Check for completed transfers, and remove their easy handles */
137 CURL *easy; local
146 easy = msg->easy_handle;
148 curl_easy_getinfo(easy, CURLINFO_PRIVATE, &conn);
149 curl_easy_getinfo(easy, CURLINFO_EFFECTIVE_URL, &eff_url);
151 curl_multi_remove_handle(g->multi, easy);
153 curl_easy_cleanup(easy);
254 addsock(curl_socket_t s, CURL *easy, int action, GlobalInfo *g) argument
[all...]
H A Devhiperfifo.c38 of URL's and creates some new easy handles to fetch each URL via the
89 /* Information associated with a specific easy handle */
92 CURL *easy; member in struct:_ConnInfo
103 CURL *easy; member in struct:_SockInfo
156 /* Check for completed transfers, and remove their easy handles */
163 CURL *easy; local
169 easy = msg->easy_handle;
171 curl_easy_getinfo(easy, CURLINFO_PRIVATE, &conn);
172 curl_easy_getinfo(easy, CURLINFO_EFFECTIVE_URL, &eff_url);
174 curl_multi_remove_handle(g->multi, easy);
251 addsock(curl_socket_t s, CURL *easy, int action, GlobalInfo *g) argument
[all...]
/macosx-10.10/OpenSSL098-52/src/demos/easy_tls/
H A DMakefile1 # Makefile for easy-tls example application (rudimentary client and server)
54 SOURCES=easy-tls.c test.c
55 HEADERS=easy-tls.h test.h
75 easy-tls.tar.gz: $(EVERYTHING)
77 gzip -9 > easy-tls.tar.gz
111 OBJS=easy-tls.o test.o
123 easy-tls.o: $(HEADERS)
/macosx-10.10/curl-83.1.2/curl/src/
H A Dtool_main.c153 config->easy = curl_easy_init();
154 if(config->easy) {
157 config->first->easy = config->easy;
161 helpf(stderr, "error initializing curl easy handle\n");
205 /* Cleanup the easy handle */
206 curl_easy_cleanup(config->easy);
207 config->easy = NULL;
H A Dtool_cfgable.h33 CURL *easy; /* A copy of the handle from GlobalConfig */ member in struct:OperationConfig
213 CURL *easy; /* Once we have one, we keep it here */ member in struct:GlobalConfig
/macosx-10.10/CPANInternal-159.1/Log-Log4perl-1.40/t/
H A D051Extra.t16 use Log::Log4perl qw(:easy :no_extra_logdie_message);
28 unlink "t/tmp/easy";
52 my $TMP_FILE = File::Spec->catfile(qw(t tmp easy));
53 $TMP_FILE = "tmp/easy" if ! -d "t";
95 use Log::Log4perl qw(:easy);
H A D055AppDestroy.t28 use Log::Log4perl qw(:easy);
H A D049Unhide.t31 use Log::Log4perl qw(:easy :resurrect);
H A D053Resurrect.t15 use Log::Log4perl qw(:easy);
H A D020Easy2.t26 use Log::Log4perl qw(:easy);
H A D048lwp.t32 use Log::Log4perl qw(:easy);
/macosx-10.10/CPANInternal-159.1/Log-Log4perl-1.40/eg/benchmarks/
H A Dsimple8 use Log::Log4perl qw(:easy);

Completed in 212 milliseconds

1234