Searched refs:multi (Results 1 - 25 of 94) sorted by relevance

1234

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Deasyif.h28 void Curl_easy_addmulti(struct SessionHandle *data, void *multi);
H A Dmulti.c135 this multi handle with an easy handle. Set this to CURL_MULTI_HANDLE. */
163 /* Whether pipelining is enabled for this multi handle */
181 static void multi_connc_remove_handle(struct Curl_multi *multi,
183 static void singlesocket(struct Curl_multi *multi,
185 static CURLMcode add_closure(struct Curl_multi *multi,
187 static int update_timer(struct Curl_multi *multi);
199 struct Curl_multi *multi,
254 easy->easy_handle->multi->num_alive--;
371 * the list kept in the multi handle.
373 static CURLMcode multi_addmsg(struct Curl_multi *multi, argument
396 struct Curl_multi *multi = calloc(1, sizeof(struct Curl_multi)); local
447 struct Curl_multi *multi = (struct Curl_multi *)multi_handle; local
632 struct Curl_multi *multi=(struct Curl_multi *)multi_handle; local
791 Curl_multi_canPipeline(const struct Curl_multi* multi) argument
901 struct Curl_multi *multi=(struct Curl_multi *)multi_handle; local
944 multi_runsingle(struct Curl_multi *multi, struct timeval now, struct Curl_one_easy *easy) argument
1706 struct Curl_multi *multi=(struct Curl_multi *)multi_handle; local
1772 struct Curl_multi *multi=(struct Curl_multi *)multi_handle; local
1856 struct Curl_multi *multi=(struct Curl_multi *)multi_handle; local
1886 singlesocket(struct Curl_multi *multi, struct Curl_one_easy *easy) argument
2046 add_next_timeout(struct timeval now, struct Curl_multi *multi, struct SessionHandle *d) argument
2090 multi_socket(struct Curl_multi *multi, bool checkall, curl_socket_t s, int ev_bitmask, int *running_handles) argument
2222 struct Curl_multi *multi=(struct Curl_multi *)multi_handle; local
2291 multi_timeout(struct Curl_multi *multi, long *timeout_ms) argument
2329 struct Curl_multi *multi=(struct Curl_multi *)multi_handle; local
2342 update_timer(struct Curl_multi *multi) argument
2580 struct Curl_multi *multi = data->multi; local
2665 struct Curl_multi *multi = (struct Curl_multi *)multi_handle; local
2678 multi_connc_remove_handle(struct Curl_multi *multi, struct SessionHandle *data) argument
2731 add_closure(struct Curl_multi *multi, struct SessionHandle *data) argument
2800 struct Curl_multi *multi=(struct Curl_multi *)multi_handle; local
[all...]
H A Dmultiif.h26 * Prototypes for library-wide functions provided by multi.c
30 bool Curl_multi_canPipeline(const struct Curl_multi* multi);
H A Deasy.c397 * to run the full test suite on the multi interface instead of the easy one.
403 * Wrapper-function that: creates a multi handle, adds the easy handle to it,
405 * easy handle, destroys the multi handle and returns the easy handle's return
406 * code. This will make everything internally use and assume multi interface.
410 CURLM *multi; local
425 multi = curl_multi_init();
426 if(!multi)
429 mcode = curl_multi_add_handle(multi, easy);
431 curl_multi_cleanup(multi);
442 curl_multi_perform(multi,
558 Curl_easy_addmulti(struct SessionHandle *data, void *multi) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/tests/libtest/
H A Dlib536.c32 static int perform(CURLM *multi) argument
45 res_multi_perform(multi, &handles);
60 res_multi_fdset(multi, &fdread, &fdwrite, &fdexcep, &maxfd);
80 CURLM *multi = NULL; local
88 multi_init(multi);
92 multi_setopt(multi, CURLMOPT_PIPELINING, 1L);
98 res_multi_add_handle(multi, easy);
104 res = perform(multi);
110 curl_multi_remove_handle(multi, easy);
117 res_multi_add_handle(multi, eas
[all...]
H A Dlib507.c33 CURLM* multi = NULL; local
43 multi_init(multi);
50 multi_add_handle(multi, curls);
52 multi_perform(multi, &still_running);
69 multi_fdset(multi, &fdread, &fdwrite, &fdexcep, &maxfd);
77 multi_perform(multi, &still_running);
82 msg = curl_multi_info_read(multi, &still_running);
92 curl_multi_cleanup(multi);
H A Dlib591.c37 CURLM *multi = NULL; local
82 multi_init(multi);
84 multi_add_handle(multi, easy);
94 multi_perform(multi, &running);
105 multi_fdset(multi, &fdread, &fdwrite, &fdexcep, &maxfd);
109 multi_timeout(multi, &timeout);
127 msg = curl_multi_info_read(multi, &msgs_left);
135 curl_multi_cleanup(multi);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/docs/examples/
H A DMakefile.inc4 https multi-app multi-debugcallback multi-double multi-post multi-single \
7 smtp-multi simplesmtp smtp-tls rtsp externalsocket resolve \
H A Dhiperfifo.c22 /* Example application source code using the multi socket interface to
77 CURLM *multi; member in struct:_GlobalInfo
106 static int multi_timer_cb(CURLM *multi, long timeout_ms, GlobalInfo *g) argument
109 (void)multi; /* unused */
156 while ((msg = curl_multi_info_read(g->multi, &msgs_left))) {
163 curl_multi_remove_handle(g->multi, easy);
173 /* Called by libevent when we get action on a multi socket */
183 rc = curl_multi_socket_action(g->multi, fd, action, &g->still_running);
205 rc = curl_multi_socket_action(g->multi,
249 curl_multi_assign(g->multi,
[all...]
H A Devhiperfifo.c22 /* Example application source code using the multi socket interface to
83 CURLM *multi; member in struct:_GlobalInfo
114 static int multi_timer_cb(CURLM *multi, long timeout_ms, GlobalInfo *g) argument
168 while ((msg = curl_multi_info_read(g->multi, &msgs_left))) {
175 curl_multi_remove_handle(g->multi, easy);
185 /* Called by libevent when we get action on a multi socket */
194 rc = curl_multi_socket_action(g->multi, w->fd, action, &g->still_running);
212 rc = curl_multi_socket_action(g->multi, CURL_SOCKET_TIMEOUT, 0, &g->still_running);
258 curl_multi_assign(g->multi, s, fdp);
350 "Adding easy %p to multi
[all...]
H A Dghiper.c22 /* Example application source code using the multi socket interface to
72 CURLM *multi; member in struct:_GlobalInfo
135 while ((msg = curl_multi_info_read(g->multi, &msgs_left))) {
142 curl_multi_remove_handle(g->multi, easy);
158 rc = curl_multi_socket_action(g->multi,
168 static int update_timeout_cb(CURLM *multi, long timeout_ms, void *userp) argument
185 /* Called by glib when we get action on a multi socket */
196 rc = curl_multi_socket_action(g->multi, fd, action, &g->still_running);
245 curl_multi_assign(g->multi, s, fdp);
332 MSG_OUT("Adding easy %p to multi
[all...]
H A DMakefile67 multi-app$(EXEEXT) multi-debugcallback$(EXEEXT) \
68 multi-double$(EXEEXT) multi-post$(EXEEXT) \
69 multi-single$(EXEEXT) persistant$(EXEEXT) \
74 smtp-multi$(EXEEXT) simplesmtp$(EXEEXT) smtp-tls$(EXEEXT) \
177 multi_app_SOURCES = multi-app.c
178 multi_app_OBJECTS = multi-app.$(OBJEXT)
181 multi_debugcallback_SOURCES = multi-debugcallback.c
182 multi_debugcallback_OBJECTS = multi
[all...]
H A DMakefile.in67 multi-app$(EXEEXT) multi-debugcallback$(EXEEXT) \
68 multi-double$(EXEEXT) multi-post$(EXEEXT) \
69 multi-single$(EXEEXT) persistant$(EXEEXT) \
74 smtp-multi$(EXEEXT) simplesmtp$(EXEEXT) smtp-tls$(EXEEXT) \
177 multi_app_SOURCES = multi-app.c
178 multi_app_OBJECTS = multi-app.$(OBJEXT)
181 multi_debugcallback_SOURCES = multi-debugcallback.c
182 multi_debugcallback_OBJECTS = multi
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/scripts/
H A DMakefile.lib36 multi-used-y := $(sort $(foreach m,$(obj-y), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))), $(m))))
37 multi-used-m := $(sort $(foreach m,$(obj-m), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))), $(m))))
38 multi-used := $(multi-used-y) $(multi-used-m)
39 single-used-m := $(sort $(filter-out $(multi-used-m),$(obj-m)))
43 multi-objs-y := $(foreach m, $(multi-used-y), $($(m:.o=-objs)) $($(m:.o=-y)))
44 multi-objs-m := $(foreach m, $(multi
[all...]
H A DMakefile.build63 ifdef list-multi
64 $(warning kbuild: $(obj)/Makefile - list-multi := $(list-multi) is obsolete in 2.6. Please fix!)
119 # Default for not multi-part modules
122 $(multi-objs-m) : modname = $(modname-multi)
123 $(multi-objs-m:.o=.i) : modname = $(modname-multi)
124 $(multi-objs-m:.o=.s) : modname = $(modname-multi)
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/scripts/
H A DMakefile.lib36 multi-used-y := $(sort $(foreach m,$(obj-y), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))), $(m))))
37 multi-used-m := $(sort $(foreach m,$(obj-m), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))), $(m))))
38 multi-used := $(multi-used-y) $(multi-used-m)
39 single-used-m := $(sort $(filter-out $(multi-used-m),$(obj-m)))
43 multi-objs-y := $(foreach m, $(multi-used-y), $($(m:.o=-objs)) $($(m:.o=-y)))
44 multi-objs-m := $(foreach m, $(multi
[all...]
H A DMakefile.build63 ifdef list-multi
64 $(warning kbuild: $(obj)/Makefile - list-multi := $(list-multi) is obsolete in 2.6. Please fix!)
119 # Default for not multi-part modules
122 $(multi-objs-m) : modname = $(modname-multi)
123 $(multi-objs-m:.o=.i) : modname = $(modname-multi)
124 $(multi-objs-m:.o=.s) : modname = $(modname-multi)
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/src/
H A Dtool_mfiles.c66 struct multi_files *multi; local
70 multi = calloc(1, sizeof(struct multi_files));
71 if(multi) {
72 multi->form.option = CURLFORM_FILE;
73 multi->form.value = file_name;
74 AppendNode(multi_first, multi_last, multi);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/include/curl/
H A DMakefile.am23 curl.h curlver.h easy.h mprintf.h stdcheaders.h multi.h \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iptables-1.4.12.1/iptables/
H A DMakefile.am17 xtables_multi_SOURCES = xtables-multi.c iptables-xml.c
39 sbin_PROGRAMS = xtables-multi
65 for i in ${vx_bin_links}; do ${LN_S} -f "${sbindir}/xtables-multi" "${DESTDIR}${bindir}/$$i"; done;
66 for i in ${v4_sbin_links}; do ${LN_S} -f xtables-multi "${DESTDIR}${sbindir}/$$i"; done;
67 for i in ${v6_sbin_links}; do ${LN_S} -f xtables-multi "${DESTDIR}${sbindir}/$$i"; done;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/serial/
H A Dserial_cs.c80 /* Table of multi-port card ID's */
85 int multi; /* 1 = multifunction, > 1 = # ports */ member in struct:serial_quirk
95 int multi; member in struct:serial_info
147 * be handled by setting the quirk entry .multi = 0 | 1 ?
153 if (info->multi > 1)
154 info->multi = 1;
197 if (info->multi) {
207 .multi = -1,
212 .multi = -1,
217 .multi
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/kernel/
H A Daudit.h113 int done, int multi,
116 int done, int multi,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/docs/libcurl/
H A DMakefile.am34 curl_share_setopt.3 libcurl.3 libcurl-easy.3 libcurl-multi.3 \
54 libcurl.html libcurl-multi.html libcurl-easy.html libcurl-share.html \
73 curl_share_setopt.pdf libcurl.pdf libcurl-multi.pdf libcurl-easy.pdf \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/tests/
H A Dmsgmerge-83 # Test multi-domain handling.
43 ${MSGMERGE} --multi-domain -q -o mm-test8.tmp mm-test8.po mm-test8.pot
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/ata/
H A Dpata_sil680.c192 u16 multi, ultra; local
196 pci_read_config_word(pdev, ma, &multi);
207 multi = 0x10C1;
211 multi = dma_table[adev->dma_mode - XFER_MW_DMA_0];
215 pci_write_config_word(pdev, ma, multi);

Completed in 152 milliseconds

1234