HomeSort by relevance Sort by last modified time
    Searched refs:numfds (Results 1 - 13 of 13) sorted by null

  /external/curl/docs/examples/
multi-single.c 75 int numfds; local
78 mc = curl_multi_wait(multi_handle, NULL, 0, 1000, &numfds);
85 /* 'numfds' being zero means either a timeout or no file descriptors to
90 if(!numfds) {
91 repeats++; /* count number of repeated zero numfds */
  /libcore/ojluni/src/main/java/sun/nio/ch/
PollArrayWrapper.java 116 int poll(int numfds, int offset, long timeout) {
118 numfds, timeout);
125 private native int poll0(long pollAddress, int numfds, long timeout);
EPoll.java 112 static native int epollWait(int epfd, long pollAddress, int numfds)
DevPollArrayWrapper.java 316 private native int poll0(long pollAddress, int numfds, long timeout,
EPollArrayWrapper.java 322 private native int epollWait(long pollAddress, int numfds, long timeout,
  /libcore/ojluni/src/main/native/
PollArrayWrapper.c 77 jlong address, jint numfds,
86 RESTARTABLE (poll(a, numfds, timeout), err);
88 err = ipoll(a, numfds, timeout);
  /hardware/qcom/camera/QCamera2/stack/mm-camera-interface/src/
mm_camera_sock.c 172 * @numfds : num of file descriptors to be sent
181 int numfds)
186 char control[CMSG_SPACE(sizeof(int) * numfds)];
207 /* if numfds is valid, we need to pass it through control msg */
208 if (numfds > 0) {
215 cmsghp->cmsg_len = CMSG_LEN(sizeof(int) * numfds);
218 memcpy(fds_ptr, sendfds, sizeof(int) * numfds);
mm_camera.c     [all...]
  /hardware/qcom/camera/msmcobalt/QCamera2/stack/mm-camera-interface/src/
mm_camera_sock.c 172 * @numfds : num of file descriptors to be sent
181 int numfds)
186 char control[CMSG_SPACE(sizeof(int) * numfds)];
207 /* if numfds is valid, we need to pass it through control msg */
208 if (numfds > 0) {
215 cmsghp->cmsg_len = CMSG_LEN(sizeof(int) * numfds);
218 memcpy(fds_ptr, sendfds, sizeof(int) * numfds);
mm_camera.c     [all...]
  /external/curl/lib/
easy.c 599 int numfds=0; local
610 /* fprintf(stderr, "poll() %d check socket %d\n", numfds, f->fd); */
612 numfds++;
619 pollrc = Curl_poll(fds, numfds, (int)ev->ms);
634 for(i = 0; i< numfds; i++) {
  /hardware/qcom/camera/QCamera2/stack/mm-camera-interface/inc/
mm_camera.h 579 int numfds);
  /hardware/qcom/camera/msmcobalt/QCamera2/stack/mm-camera-interface/inc/
mm_camera.h 689 int numfds);
    [all...]

Completed in 211 milliseconds