HomeSort by relevance Sort by last modified time
    Searched refs:Endpoint (Results 1 - 25 of 77) sorted by null

1 2 3 4

  /frameworks/native/libs/vr/libpdx_default_transport/private/servicefs/pdx/default_transport/
service_endpoint.h 10 using Endpoint = ::android::pdx::servicefs::Endpoint;
  /frameworks/native/libs/vr/libpdx_default_transport/private/uds/pdx/default_transport/
service_endpoint.h 10 using Endpoint = ::android::pdx::uds::Endpoint;
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
reactive_socket_recvfrom_op.hpp 28 template <typename MutableBufferSequence, typename Endpoint>
33 const MutableBufferSequence& buffers, Endpoint& endpoint,
39 sender_endpoint_(endpoint),
68 Endpoint& sender_endpoint_;
72 template <typename MutableBufferSequence, typename Endpoint, typename Handler>
74 public reactive_socket_recvfrom_op_base<MutableBufferSequence, Endpoint>
80 const MutableBufferSequence& buffers, Endpoint& endpoint,
82 : reactive_socket_recvfrom_op_base<MutableBufferSequence, Endpoint>(
    [all...]
reactive_socket_sendto_op.hpp 28 template <typename ConstBufferSequence, typename Endpoint>
33 const ConstBufferSequence& buffers, const Endpoint& endpoint,
38 destination_(endpoint),
60 Endpoint destination_;
64 template <typename ConstBufferSequence, typename Endpoint, typename Handler>
66 public reactive_socket_sendto_op_base<ConstBufferSequence, Endpoint>
72 const ConstBufferSequence& buffers, const Endpoint& endpoint,
74 : reactive_socket_sendto_op_base<ConstBufferSequence, Endpoint>(socket
    [all...]
  /external/libmojo/ipc/
attachment_broker.h 36 class Endpoint;
99 // Invocations of Send() on |endpoint| will occur on thread bound to |runner|.
101 Endpoint* endpoint,
103 virtual void DeregisterCommunicationChannel(Endpoint* endpoint);
107 virtual void RegisterBrokerCommunicationChannel(Endpoint* endpoint);
108 virtual void DeregisterBrokerCommunicationChannel(Endpoint* endpoint);
    [all...]
  /frameworks/native/libs/vr/libpdx_uds/
service_endpoint.cpp 134 Endpoint::Endpoint(const std::string& endpoint_path, bool blocking,
145 << "Endpoint::Endpoint: Socket name '" << endpoint_path_
150 << "Endpoint::Endpoint: Unable to obtain the control socket fd for '"
155 CHECK(fd.IsValid()) << "Endpoint::Endpoint: Failed to create socket: "
166 CHECK_EQ(ret, 0) << "Endpoint::Endpoint: bind error: " << strerror(errno)
    [all...]
client_channel_tests.cpp 34 using android::pdx::uds::Endpoint;
48 TestService(std::unique_ptr<Endpoint> endpoint)
49 : ServiceBase{"TestService", std::move(endpoint)} {}
82 auto endpoint = Endpoint::CreateFromSocketFd(LocalHandle{}); local
83 endpoint->RegisterNewChannelForTests(std::move(channel_socket));
84 service_ = TestService::Create(std::move(endpoint));
  /frameworks/native/libs/vr/libpdx_uds/private/uds/
service_endpoint.h 21 class Endpoint : public pdx::Endpoint {
27 // Blocking modes for service endpoint. Controls whether the epoll set is in
39 ~Endpoint() override = default;
86 // Open an endpoint at the given path.
88 // in signature with servicefs::Endpoint::Create().
89 // This method uses |endpoint_path| as a relative path to endpoint socket
91 static std::unique_ptr<Endpoint> Create(const std::string& endpoint_path,
95 // Helper method to create an endpoint at the given UDS socket path. This
97 static std::unique_ptr<Endpoint> CreateAndBindSocket
    [all...]
client_channel.h 23 uint32_t GetIpcTag() const override { return Endpoint::kIpcTag; }
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbMassStorageDxe/
UsbMassCbi.c 67 EFI_USB_ENDPOINT_DESCRIPTOR EndPoint;
72 // Allocate the CBI context for USB_CBI_PROTOCOL and 3 endpoint descriptors.
98 // Locate and save the bulk-in, bulk-out, and interrupt endpoint
101 Status = UsbIo->UsbGetEndpointDescriptor (UsbIo, Index, &EndPoint);
106 if (USB_IS_BULK_ENDPOINT (EndPoint.Attributes)) {
110 if (USB_IS_IN_ENDPOINT (EndPoint.EndpointAddress) &&
114 CopyMem(UsbCbi->BulkInEndpoint, &EndPoint, sizeof (EndPoint));;
117 if (USB_IS_OUT_ENDPOINT (EndPoint.EndpointAddress) &&
121 CopyMem(UsbCbi->BulkOutEndpoint, &EndPoint, sizeof (EndPoint));
    [all...]
UsbMassBot.c 53 EFI_USB_ENDPOINT_DESCRIPTOR EndPoint;
58 // Allocate the BOT context for USB_BOT_PROTOCOL and two endpoint descriptors.
83 // Locate and save the first bulk-in and bulk-out endpoint
86 Status = UsbIo->UsbGetEndpointDescriptor (UsbIo, Index, &EndPoint);
88 if (EFI_ERROR (Status) || !USB_IS_BULK_ENDPOINT (EndPoint.Attributes)) {
92 if (USB_IS_IN_ENDPOINT (EndPoint.EndpointAddress) &&
96 CopyMem(UsbBot->BulkInEndpoint, &EndPoint, sizeof (EndPoint));
99 if (USB_IS_OUT_ENDPOINT (EndPoint.EndpointAddress) &&
103 CopyMem (UsbBot->BulkOutEndpoint, &EndPoint, sizeof(EndPoint));
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Drivers/Isp1761UsbDxe/
Isp1761UsbDxe.c 36 endpoint, and one OUT endpoint (plus the default control endpoint).
54 // The config descriptor, interface descriptor, and endpoint descriptors in a
72 IN UINT8 Endpoint
75 // The DMA Endpoint Index must not point to the same as the
76 // Endpoint Index Register.
77 WRITE_REG32 (ISP1761_DMA_ENDPOINT_INDEX, ((Endpoint + 2) % ISP1761_NUM_ENDPOINTS));
78 WRITE_REG32 (ISP1761_ENDPOINT_INDEX, Endpoint);
85 IN UINT8 Endpoint
    [all...]
  /frameworks/native/libs/vr/libpdx/private/pdx/
service_endpoint.h 34 // Wrapper around transport endpoint. Abstracts the underlying transport APIs in
37 class Endpoint {
39 virtual ~Endpoint() = default;
44 // Associates a Service instance with an endpoint by setting the service
46 // associated with a given endpoint.
74 // represented by the |endpoint|. If the channel reference in question is
80 // Receives a message on the given endpoint file descriptor.
136 // Cancels the endpoint, unblocking any receiver threads waiting for a
141 // from this endpoint.
mock_service_endpoint.h 10 class MockEndpoint : public Endpoint {
service.h 70 * (unless the endpoint is closed), to prevent clients from blocking
356 Service(const std::string& name, std::unique_ptr<Endpoint> endpoint);
549 * Get the endpoint for the service.
551 Endpoint* endpoint() const { return endpoint_.get(); } function in class:android::pdx::Service
554 * Cancels the endpoint, unblocking any receiver threads waiting in
602 * Receives a message on this Service instance's endpoint and dispatches it.
603 * If the endpoint is in blocking mode this call blocks until a message is
605 * If the endpoint is in non-blocking mode and a message is not pending thi
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbBusDxe/
UsbBus.c 131 // Reset the endpoint toggle when endpoint stall is cleared
205 Execute a bulk transfer to the device endpoint.
208 @param Endpoint The device endpoint.
224 IN UINT8 Endpoint,
239 if ((USB_ENDPOINT_ADDR (Endpoint) == 0) || (USB_ENDPOINT_ADDR(Endpoint) > 15) ||
250 EpDesc = UsbGetEndpointDesc (UsbIf, Endpoint);
262 Endpoint,
    [all...]
UsbBus.h 407 Execute a bulk transfer to the device endpoint.
410 @param Endpoint The device endpoint.
426 IN UINT8 Endpoint,
437 @param Endpoint The device endpoint.
453 IN UINT8 Endpoint,
465 @param Endpoint The device endpoint.
484 IN UINT8 Endpoint,
    [all...]
  /frameworks/native/libs/vr/libvrflinger/
display_manager_service.cpp 16 using android::pdx::default_transport::Endpoint;
37 Endpoint::Create(DisplayManagerProtocol::kClientPath)),
vsync_service.cpp 20 using android::pdx::default_transport::Endpoint;
27 : BASE("VSyncService", Endpoint::Create(VSyncProtocol::kClientPath)),
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
rpcdcep.h 87 unsigned char *Endpoint;
160 RPCRTAPI RPC_STATUS RPC_ENTRY I_RpcServerUseProtseqEp2A(RPC_CSTR NetworkAddress,RPC_CSTR Protseq,unsigned int MaxCalls,RPC_CSTR Endpoint,void *SecurityDescriptor,void *Policy);
161 RPCRTAPI RPC_STATUS RPC_ENTRY I_RpcServerUseProtseqEp2W(RPC_WSTR NetworkAddress,RPC_WSTR Protseq,unsigned int MaxCalls,RPC_WSTR Endpoint,void *SecurityDescriptor,void *Policy);
215 RPCRTAPI RPC_STATUS RPC_ENTRY I_RpcServerUnregisterEndpointA(RPC_CSTR Protseq,RPC_CSTR Endpoint);
216 RPCRTAPI RPC_STATUS RPC_ENTRY I_RpcServerUnregisterEndpointW(RPC_WSTR Protseq,RPC_WSTR Endpoint);
rpcdce.h 195 RPCRTAPI RPC_STATUS RPC_ENTRY RpcStringBindingComposeA(RPC_CSTR ObjUuid,RPC_CSTR Protseq,RPC_CSTR NetworkAddr,RPC_CSTR Endpoint,RPC_CSTR Options,RPC_CSTR *StringBinding);
196 RPCRTAPI RPC_STATUS RPC_ENTRY RpcStringBindingComposeW(RPC_WSTR ObjUuid,RPC_WSTR Protseq,RPC_WSTR NetworkAddr,RPC_WSTR Endpoint,RPC_WSTR Options,RPC_WSTR *StringBinding);
197 RPCRTAPI RPC_STATUS RPC_ENTRY RpcStringBindingParseA(RPC_CSTR StringBinding,RPC_CSTR *ObjUuid,RPC_CSTR *Protseq,RPC_CSTR *NetworkAddr,RPC_CSTR *Endpoint,RPC_CSTR *NetworkOptions);
198 RPCRTAPI RPC_STATUS RPC_ENTRY RpcStringBindingParseW(RPC_WSTR StringBinding,RPC_WSTR *ObjUuid,RPC_WSTR *Protseq,RPC_WSTR *NetworkAddr,RPC_WSTR *Endpoint,RPC_WSTR *NetworkOptions);
230 RPCRTAPI RPC_STATUS RPC_ENTRY RpcServerUseProtseqEpA(RPC_CSTR Protseq,unsigned int MaxCalls,RPC_CSTR Endpoint,void *SecurityDescriptor);
231 RPCRTAPI RPC_STATUS RPC_ENTRY RpcServerUseProtseqEpExA(RPC_CSTR Protseq,unsigned int MaxCalls,RPC_CSTR Endpoint,void *SecurityDescriptor,PRPC_POLICY Policy);
232 RPCRTAPI RPC_STATUS RPC_ENTRY RpcServerUseProtseqEpW(RPC_WSTR Protseq,unsigned int MaxCalls,RPC_WSTR Endpoint,void *SecurityDescriptor);
233 RPCRTAPI RPC_STATUS RPC_ENTRY RpcServerUseProtseqEpExW(RPC_WSTR Protseq,unsigned int MaxCalls,RPC_WSTR Endpoint,void *SecurityDescriptor,PRPC_POLICY Policy);
  /device/linaro/bootloader/edk2/MdePkg/Include/Library/
UefiUsbLib.h 444 @param Recipient The USB data recipient type (i.e. Device, Interface, Endpoint).
477 @param Recipient The USB data recipient type (i.e. Device, Interface, Endpoint).
511 @param Recipient The USB data recipient type (i.e. Device, Interface, Endpoint).
535 Clear halt feature of the specified usb endpoint.
537 Retrieve the USB endpoint descriptor specified by UsbIo and EndPoint.
538 If the USB endpoint descriptor can not be retrieved, then return EFI_NOT_FOUND.
539 If the endpoint descriptor is found, then clear the halt feature of this USB endpoint.
545 @param Endpoint The endpoint address.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiUsbLib/
UsbDxeLib.c 368 @param Recipient The USB data recipient type (i.e. Device, Interface, Endpoint).
445 @param Recipient The USB data recipient type (i.e. Device, Interface, Endpoint).
524 @param Recipient The USB data recipient type (i.e. Device, Interface, Endpoint).
593 Clear halt feature of the specified usb endpoint.
595 Retrieve the USB endpoint descriptor specified by UsbIo and EndPoint.
596 If the USB endpoint descriptor can not be retrieved, then return EFI_NOT_FOUND.
597 If the endpoint descriptor is found, then clear the halt feature of this USB endpoint.
603 @param Endpoint The endpoint address.
    [all...]
  /frameworks/native/services/vr/performanced/
performance_service.cpp 25 using android::pdx::default_transport::Endpoint;
106 Endpoint::Create(PerformanceRPC::kClientPath)) {
  /prebuilts/gradle-plugin/com/android/tools/devicelib/25.4.0-alpha5/
devicelib-25.4.0-alpha5.jar 

Completed in 3835 milliseconds

1 2 3 4