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

1 2

  /external/libchrome/sandbox/linux/syscall_broker/
broker_channel.h 20 typedef base::ScopedFD EndPoint;
21 static void CreatePair(EndPoint* reader, EndPoint* writer);
broker_host.h 25 BrokerChannel::EndPoint ipc_channel);
32 const BrokerChannel::EndPoint ipc_channel_;
broker_channel.cc 17 void BrokerChannel::CreatePair(EndPoint* reader, EndPoint* writer) {
broker_client.h 34 BrokerChannel::EndPoint ipc_channel,
57 const BrokerChannel::EndPoint ipc_channel_;
broker_process.cc 63 BrokerChannel::EndPoint ipc_reader;
64 BrokerChannel::EndPoint ipc_writer;
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/UhciDxe/
UhciSched.h 56 // Endpoint attributes
59 UINT8 EndPoint;
190 @param EndPoint EndPoint Address.
209 IN UINT8 EndPoint,
224 @param EndPoint EndPoint Address.
236 IN UINT8 EndPoint,
UhciQueue.h 71 UINT32 EndPoint : 4;
246 @param EndPoint Endpoint Number.
262 IN UINT8 EndPoint,
UhciDebug.c 69 DEBUG ((EFI_D_VERBOSE, " EndPoint - %d\n", CurTdSw->TdHw.EndPoint));
UhciQueue.c 350 Td->TdHw.EndPoint = 0;
369 @param Endpoint Endpoint number.
384 IN UINT8 Endpoint,
414 Td->TdHw.EndPoint = Endpoint & 0x0F;
462 Td->TdHw.EndPoint = 0;
617 @param EndPoint Endpoint Number.
633 IN UINT8 EndPoint,
    [all...]
  /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/MdeModulePkg/Universal/Network/Dhcp4Dxe/
Dhcp4Io.h 137 @param EndPoint The local/remote UDP access point
146 UDP_END_POINT *EndPoint,
181 @param EndPoint The local/remote UDP access point
190 UDP_END_POINT *EndPoint,
Dhcp4Io.c 951 @param EndPoint The local/remote UDP access point
960 UDP_END_POINT *EndPoint,
1124 @param EndPoint The local/remote UDP access point
1133 UDP_END_POINT *EndPoint,
1177 UDP_END_POINT EndPoint;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeUdpIoLib/
DxeUdpIoLib.c 173 UDP_END_POINT EndPoint;
178 ZeroMem (&EndPoint, sizeof(UDP_END_POINT));
237 EndPoint.LocalPort = ((EFI_UDP4_SESSION_DATA *) Session)->DestinationPort;
238 EndPoint.RemotePort = ((EFI_UDP4_SESSION_DATA *) Session)->SourcePort;
241 &EndPoint.LocalAddr,
247 &EndPoint.RemoteAddr,
252 EndPoint.LocalAddr.Addr[0] = NTOHL (EndPoint.LocalAddr.Addr[0]);
253 EndPoint.RemoteAddr.Addr[0] = NTOHL (EndPoint.RemoteAddr.Addr[0]);
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
SyncStorageEngineTest.java 65 SyncStorageEngine.EndPoint endPoint = new SyncStorageEngine.EndPoint(account, "auth1", 0);
66 SyncStatusInfo info = engine.getStatusByAuthority(endPoint);
  /frameworks/base/services/tests/servicestests/src/com/android/server/content/
SyncOperationTest.java 144 SyncStorageEngine.EndPoint ep = new SyncStorageEngine.EndPoint(new Account("name", "type"),
  /external/llvm/include/llvm/CodeGen/
LiveInterval.h 90 const SlotIndex EndPoint;
94 LiveQueryResult(VNInfo *EarlyVal, VNInfo *LateVal, SlotIndex EndPoint,
96 : EarlyVal(EarlyVal), LateVal(LateVal), EndPoint(EndPoint), Kill(Kill)
115 return EndPoint.isDead();
144 SlotIndex endPoint() const {
145 return EndPoint;
506 SlotIndex EndPoint;
510 EndPoint = I->end;
515 return LiveQueryResult(EarlyVal, LateVal, EndPoint, Kill)
    [all...]
  /frameworks/base/services/core/java/com/android/server/content/
SyncOperation.java 67 public final SyncStorageEngine.EndPoint target;
103 this(new SyncStorageEngine.EndPoint(account, provider, userId), owningUid, owningPackage,
107 private SyncOperation(SyncStorageEngine.EndPoint info, int owningUid, String owningPackage,
119 public SyncOperation(SyncStorageEngine.EndPoint info, int owningUid, String owningPackage,
284 SyncStorageEngine.EndPoint target =
285 new SyncStorageEngine.EndPoint(account, provider, userId);
300 final SyncStorageEngine.EndPoint other = toRun.target;
SyncStorageEngine.java 164 public static class EndPoint {
165 public final static EndPoint USER_ALL_PROVIDER_ALL_ACCOUNTS_ALL =
166 new EndPoint(null, null, UserHandle.USER_ALL);
171 public EndPoint(Account account, String provider, int userId) {
178 * An Endpoint for a sync matches if it targets the same sync adapter for the same user.
180 * @param spec the Endpoint to match. If the spec has null fields, they indicate a wildcard
183 public boolean matchesSpec(EndPoint spec) {
251 final EndPoint target;
285 AuthorityInfo(EndPoint info, int id) {
342 public void onSyncRequest(EndPoint info, int reason, Bundle extras)
    [all...]
ContentService.java 540 SyncStorageEngine.EndPoint info;
541 info = new SyncStorageEngine.EndPoint(
603 SyncStorageEngine.EndPoint info;
604 info = new SyncStorageEngine.EndPoint(account, authority, userId);
621 SyncStorageEngine.EndPoint info;
625 info = new SyncStorageEngine.EndPoint(account, provider, userId);
765 SyncStorageEngine.EndPoint info =
766 new SyncStorageEngine.EndPoint(account, authority, userId);
    [all...]
SyncManager.java 99 import com.android.server.content.SyncStorageEngine.EndPoint;
131 * Each {@link EndPoint} has a backoff associated with it. When a SyncOperation fails, we increase
291 SyncStorageEngine.EndPoint.USER_ALL_PROVIDER_ALL_ACCOUNTS_ALL,
298 rescheduleSyncs(EndPoint.USER_ALL_PROVIDER_ALL_ACCOUNTS_ALL);
316 EndPoint target = new EndPoint(null, null, context.getUserId());
348 private void updateRunningAccounts(EndPoint target) {
389 rescheduleSyncs(EndPoint.USER_ALL_PROVIDER_ALL_ACCOUNTS_ALL);
482 // Set the pending status of this EndPoint to true. Pending icon is
509 public void onSyncRequest(SyncStorageEngine.EndPoint info, int reason, Bundle extras)
2500 SyncStorageEngine.EndPoint endpoint = (SyncStorageEngine.EndPoint) msg.obj; local
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
UdpIoLib.h 56 @param[in] EndPoint The UDP address pair corresponds to the UDP IO.
65 IN UDP_END_POINT *EndPoint,
282 when the packet is sent. The optional parameter EndPoint overrides the default
287 @param[in] EndPoint The local and remote access point. Override the
304 IN UDP_END_POINT *EndPoint OPTIONAL,
  /device/linaro/bootloader/edk2/NetworkPkg/Dhcp6Dxe/
Dhcp6Io.h 199 @param[in] EndPoint The pointer to the udp end point.
208 IN UDP_END_POINT *EndPoint,
  /device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/
IkeService.h 208 @param[in] EndPoint Point to UDP_END_POINT which contains the information of
218 IN UDP_END_POINT *EndPoint,
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Mtftp4Dxe/
Mtftp4Rrq.c 24 @param EndPoint The local/remote access point of the packet
33 IN UDP_END_POINT *EndPoint,
631 @param EndPoint The local/remote access point of the packet
640 IN UDP_END_POINT *EndPoint,
671 Multicast = (BOOLEAN) (EndPoint->LocalAddr.Addr[0] == Instance->McastIp);
683 if (EndPoint->RemotePort != Instance->ConnectedPort) {
687 Instance->ConnectedPort = EndPoint->RemotePort;

Completed in 2105 milliseconds

1 2