HomeSort by relevance Sort by last modified time
    Searched defs:Poll (Results 1 - 25 of 40) sorted by null

1 2

  /frameworks/native/libs/vr/libbufferhub/
detached_buffer.cpp 6 #include <poll.h>
85 int DetachedBuffer::Poll(int timeout_ms) {
86 ATRACE_NAME("DetachedBuffer::Poll");
88 return poll(&p, 1, timeout_ms);
buffer_hub_client.cpp 4 #include <poll.h>
212 int BufferHubBuffer::Poll(int timeout_ms) {
213 ATRACE_NAME("BufferHubBuffer::Poll");
215 return poll(&p, 1, timeout_ms);
  /prebuilts/go/darwin-x86/doc/codewalk/
urlpoll.go 15 pollInterval = 60 * time.Second // how often to poll each URL
66 // Poll executes an HTTP HEAD request for url
68 func (r *Resource) Poll() string {
88 s := r.Poll()
  /prebuilts/go/linux-x86/doc/codewalk/
urlpoll.go 15 pollInterval = 60 * time.Second // how often to poll each URL
66 // Poll executes an HTTP HEAD request for url
68 func (r *Resource) Poll() string {
88 s := r.Poll()
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/DebugPort/
DebugPort.h 77 EFI_DEBUGPORT_POLL Poll;
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
DebugPort.h 123 EFI_DEBUGPORT_POLL Poll;
Dns4.h 468 The Poll() function can be used by network drivers and applications to increase the
471 In some systems, the periodic timer event in the managed network driver may not poll
474 applications that are experiencing packet loss should try calling the Poll()
536 EFI_DNS4_POLL Poll;
Dns6.h 461 The Poll() function can be used by network drivers and applications to increase the
465 In some systems, the periodic timer event in the managed network driver may not poll
468 applications that are experiencing packet loss should try calling the Poll()
532 EFI_DNS6_POLL Poll;
Ftp4.h 480 The Poll() function can be used by network drivers and applications to increase the
483 driver may not poll the underlying communications device fast enough to transmit
486 the Poll() function more often.
517 EFI_FTP4_POLL Poll;
ManagedNetwork.h 366 EFI_MANAGED_NETWORK_POLL Poll;
Udp6.h 539 The Poll() function can be used by network drivers and applications to increase the rate that data
541 In some systems, the periodic timer event in the managed network driver may not poll the underlying
544 try calling the Poll() function more often.
574 EFI_UDP6_POLL Poll;
Udp4.h 291 The Poll() function can be used by network drivers and applications to increase
295 poll the underlying communications device fast enough to transmit and/or receive
298 the Poll() function more often.
439 EFI_UDP4_POLL Poll;
Http.h 477 The Poll() function can be used by network drivers and applications to increase the
481 In some systems, the periodic timer event in the managed network driver may not poll
484 applications that are experiencing packet loss should try calling the Poll() function
513 EFI_HTTP_POLL Poll;
Ip4.h 564 The Poll() function polls for incoming data packets and processes outgoing data
565 packets. Network drivers and applications can call the EFI_IP4_PROTOCOL.Poll()
569 In some systems the periodic timer event may not poll the underlying communications
572 experiencing packet loss should try calling the EFI_IP4_PROTOCOL.Poll() function
606 EFI_IP4_POLL Poll;
  /system/connectivity/wificond/
looper_backed_event_loop.cpp 124 void LooperBackedEventLoop::Poll() {
  /system/core/init/
uevent_listener.cpp 20 #include <poll.h>
179 void UeventListener::Poll(const ListenerCallback& callback,
202 int nr = poll(&ufd, 1, timeout_ms);
205 PLOG(ERROR) << "poll() of uevent socket failed, continuing";
209 // We're non-blocking, so if we receive a poll event keep processing until
  /device/google/contexthub/util/nanotool/
nanotool.cpp 48 Poll,
55 NanotoolCommand command = NanotoolCommand::Poll;
71 std::make_tuple("poll", NanotoolCommand::Poll),
109 " poll (default): enable the sensor, output received\n"
167 || args->command == NanotoolCommand::Poll)) {
182 if (args->command == NanotoolCommand::Poll) {
456 case NanotoolCommand::Poll: {
500 && args->command != NanotoolCommand::Poll) {
  /device/google/cuttlefish_common/guest/hals/sensors/
vsoc_sensors.cpp 115 rval->poll =
116 SensorsThunker<int(sensors_event_t*, int)>::call<&GceSensors::Poll>;
218 int GceSensors::Poll(sensors_event_t* data, int count_unsafe) {
225 // Poll will block until 1 of 2 things happens:
233 // and poll will either return (if at least one deadline
472 // If we added events or the deadline is lower notify the thread in Poll().
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/ManagedNetwork/
ManagedNetwork.h 158 EFI_MANAGED_NETWORK_POLL Poll;
  /external/v4l2_codec2/vda/
v4l2_device.cc 9 #include <poll.h>
155 bool V4L2Device::Poll(bool poll_device, bool* event_pending) {
165 DVLOGF(5) << "Poll(): adding device fd to poll() set";
172 if (HANDLE_EINTR(poll(pollfds, nfds, -1)) == -1) {
173 VPLOGF(1) << "poll() failed";
239 VLOGF(1) << "Failed creating a poll interrupt fd";
  /frameworks/native/libs/vr/libvrsensor/
pose_client.cpp 44 int Poll(DvrPose* state) {
108 // Freezes the pose to the provided state. Future poll operations will return
340 return PoseClient::FromC(client)->Poll(state);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/Udp4/
Udp4.h 207 EFI_UDP4_POLL Poll;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/Ip4/
Ip4.h 235 EFI_IP4_POLL Poll;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/Mtftp4/
Mtftp4.h 285 EFI_MTFTP4_POLL Poll;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/Tcp4/
Tcp4.h 240 EFI_TCP4_POLL Poll;

Completed in 1003 milliseconds

1 2