Searched refs:handles (Results 1 - 25 of 62) sorted by relevance

123

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/include/
H A Dvfs_macros.h31 #define SMB_VFS_CONNECT(conn, service, user) ((conn)->vfs.ops.connect_fn((conn)->vfs.handles.connect_hnd, (service), (user)))
32 #define SMB_VFS_DISCONNECT(conn) ((conn)->vfs.ops.disconnect((conn)->vfs.handles.disconnect))
33 #define SMB_VFS_DISK_FREE(conn, path, small_query, bsize, dfree ,dsize) ((conn)->vfs.ops.disk_free((conn)->vfs.handles.disk_free, (path), (small_query), (bsize), (dfree), (dsize)))
34 #define SMB_VFS_GET_QUOTA(conn, qtype, id, qt) ((conn)->vfs.ops.get_quota((conn)->vfs.handles.get_quota, (qtype), (id), (qt)))
35 #define SMB_VFS_SET_QUOTA(conn, qtype, id, qt) ((conn)->vfs.ops.set_quota((conn)->vfs.handles.set_quota, (qtype), (id), (qt)))
36 #define SMB_VFS_GET_SHADOW_COPY_DATA(fsp,shadow_copy_data,labels) ((fsp)->conn->vfs.ops.get_shadow_copy_data((fsp)->conn->vfs.handles.get_shadow_copy_data,(fsp),(shadow_copy_data),(labels)))
37 #define SMB_VFS_STATVFS(conn, path, statbuf) ((conn)->vfs.ops.statvfs((conn)->vfs.handles.statvfs, (path), (statbuf)))
40 #define SMB_VFS_OPENDIR(conn, fname, mask, attr) ((conn)->vfs.ops.opendir((conn)->vfs.handles.opendir, (fname), (mask), (attr)))
41 #define SMB_VFS_READDIR(conn, dirp) ((conn)->vfs.ops.readdir((conn)->vfs.handles.readdir, (dirp)))
42 #define SMB_VFS_SEEKDIR(conn, dirp, offset) ((conn)->vfs.ops.seekdir((conn)->vfs.handles
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dxpmhand.h18 #error xpmhand.h is no longer needed since wxImage now handles XPMs.
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/docs/examples/
H A Dmulti-app.c44 CURL *handles[HANDLECOUNT]; local
47 int still_running; /* keep number of running handles */
55 handles[i] = curl_easy_init();
58 curl_easy_setopt(handles[HTTP_HANDLE], CURLOPT_URL, "http://example.com");
60 curl_easy_setopt(handles[FTP_HANDLE], CURLOPT_URL, "ftp://example.com");
61 curl_easy_setopt(handles[FTP_HANDLE], CURLOPT_UPLOAD, 1L);
68 curl_multi_add_handle(multi_handle, handles[i]);
130 found = (msg->easy_handle == handles[idx]);
148 /* Free the CURL handles */
150 curl_easy_cleanup(handles[
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/test/
H A Dfopscript.tcl58 # Close any open db handles. We had to wait until now
60 set handles [berkdb handles]
61 foreach handle $handles {
H A Dfop006.tcl160 # End transaction 1 and close any open db handles.
163 set handles [berkdb handles]
164 foreach handle $handles {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/tests/libtest/
H A Dlib1900.c34 CURL *handles[MAX_URLS]; variable
107 handles[i] = curl_easy_init();
117 curl_easy_setopt(handles[handlenum], CURLOPT_URL, urlbuf);
118 curl_easy_setopt(handles[handlenum], CURLOPT_VERBOSE, 1L);
119 curl_easy_setopt(handles[handlenum], CURLOPT_FAILONERROR, 1L);
120 curl_easy_setopt(handles[handlenum], CURLOPT_WRITEFUNCTION, write_callback);
121 curl_easy_setopt(handles[handlenum], CURLOPT_WRITEDATA, NULL);
122 curl_multi_add_handle(m, handles[handlenum]);
130 if(handles[i])
131 curl_easy_cleanup(handles[
[all...]
H A Dlib536.c34 int handles; local
45 res_multi_perform(multi, &handles);
53 if(!handles)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/libtransmission/
H A Dtrevent.c32 pgpipe( int handles[2] )
38 handles[0] = handles[1] = INVALID_SOCKET;
68 if ((handles[1] = socket(PF_INET, SOCK_STREAM, 0)) == INVALID_SOCKET)
75 if (connect(handles[1], (SOCKADDR *) & serv_addr, len) == SOCKET_ERROR)
81 if ((handles[0] = accept(s, (SOCKADDR *) & serv_addr, &len)) == INVALID_SOCKET)
84 closesocket(handles[1]);
85 handles[1] = INVALID_SOCKET;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dwait.cpp149 std::vector<HANDLE> handles; local
162 handles.resize(thread.count + 1);
163 handles[0] = thread.stopWaiting;
164 std::copy(thread.waitHandles, thread.waitHandles+thread.count, handles.begin()+1);
166 DWORD result = ::WaitForMultipleObjects((DWORD)handles.size(), &handles[0], FALSE, INFINITE);
171 if (!(result > WAIT_OBJECT_0 && result < WAIT_OBJECT_0 + handles.size()))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Durl.h85 int (*url_get_multi_file_handle)(URLContext *h, int **handles,
213 int ffurl_get_multi_file_handle(URLContext *h, int **handles, int *numhandles);
H A Davio.c441 int ffurl_get_multi_file_handle(URLContext *h, int **handles, int *numhandles) argument
446 *handles = av_malloc(sizeof(**handles));
447 if (!*handles)
450 *handles[0] = h->prot->url_get_file_handle(h);
453 return h->prot->url_get_multi_file_handle(h, handles, numhandles);
H A Dsrtpproto.c127 static int srtp_get_multi_file_handle(URLContext *h, int **handles, argument
131 return ffurl_get_multi_file_handle(s->rtp_hd, handles, numhandles);
H A Drtpproto.c540 static int rtp_get_multi_file_handle(URLContext *h, int **handles, argument
544 int *hs = *handles = av_malloc(sizeof(**handles) * 2);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Daf_ladspa.c60 LADSPA_Handle *handles; member in struct:LADSPAContext
162 s->desc->connect_port(s->handles[h], s->ipmap[i],
167 s->desc->connect_port(s->handles[h], s->opmap[i],
171 s->desc->run(s->handles[h], in->nb_samples);
203 s->desc->connect_port(s->handles[0], s->opmap[i],
206 s->desc->run(s->handles[0], s->nb_samples);
261 s->handles = av_calloc(s->nb_handles, sizeof(*s->handles));
262 if (!s->handles)
266 s->handles[
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/tests/server/
H A Dsockfilt.c511 * TODO: Differentiate between read/write/except for non-SOCKET handles.
536 HANDLE handle, *handles; local
555 /* allocate internal array for the original input handles */
562 /* allocate internal array for the internal event handles */
563 handles = malloc(nfds * sizeof(HANDLE));
564 if(handles == NULL) {
569 /* allocate internal array for the internal socket handles */
583 /* loop over the handles in the input descriptor sets */
586 handles[nfd] = 0;
601 handles[nf
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/acpi/
H A Dpower.c171 result = acpi_power_get_state(list->handles[i], &state1);
367 int ret = acpi_power_on(dev->wakeup.resources.handles[i], dev);
423 dev->wakeup.resources.handles[i], dev);
503 result = acpi_power_on(tl->handles[i], device);
516 result = acpi_power_off_device(cl->handles[i], device);
H A Dutils.c368 list->handles[i] = element->reference.handle;
370 list->handles[i]));
376 //kfree(list->handles);
H A Dthermal.c819 handle = tz->trips.passive.devices.handles[i];
836 handle = tz->trips.active[i].devices.handles[j];
847 handle = tz->devices.handles[i];
1056 handles[j], &device);
1078 devices.handles[j],
1383 * handles temperature values with a single decimal place. As a consequence,
1483 handles[j], &power_state);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/qla2xxx/
H A Dqla_isr.c320 uint32_t handles[5]; local
334 handles[0] = le32_to_cpu((uint32_t)((mb[2] << 16) | mb[1]));
338 handles[0] = mb[1];
343 handles[0] = mb[1];
344 handles[1] = mb[2];
349 handles[0] = mb[1];
350 handles[1] = mb[2];
351 handles[2] = mb[3];
356 handles[0] = mb[1];
357 handles[
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dipvaddr.tex87 as this correctly handles multi-homed hosts and avoids other small
H A Dfltfactory.tex39 wxSTREAM_MIMETYPE, // MIME types the stream handles
40 wxSTREAM_ENCODING, // The HTTP Content-Encodings the stream handles
41 wxSTREAM_FILEEXT // File extensions the stream handles
H A Dpickerbase.tex14 This class handles all positioning and sizing of the text control like a
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Ddialup.cpp1245 HANDLE handles[2]; local
1246 handles[0] = data->hEventRas;
1247 handles[1] = data->hEventQuit;
1252 DWORD dwRet = ::WaitForMultipleObjects(2, handles, FALSE, INFINITE);
1284 // no sense in continuing, who knows if the handles we're
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/acpi/
H A Dacpi_bus.h37 acpi_handle handles[ACPI_MAX_HANDLES]; member in struct:acpi_handle_list
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68k/fpsp040/
H A Dsgetem.S7 | precision number in fp0. sGETEXPD handles denormalized

Completed in 282 milliseconds

123