/hardware/qcom/media/msm8998/mm-core/src/7630/ |
qc_registry_table.c | 42 NULL, // Create instance function 43 // Unique instance handle 58 NULL, // Create instance function 59 // Unique instance handle 74 NULL, // Create instance function 75 // Unique instance handle 90 NULL, // Create instance function 91 // Unique instance handle 106 NULL, // Create instance function 107 // Unique instance handl [all...] |
/device/linaro/bootloader/edk2/NetworkPkg/Mtftp6Dxe/ |
Mtftp6Support.c | 264 Configure the opened Udp6 instance until the corresponding Ip6 instance
270 @retval EFI_SUCCESS Configure the Udp6 instance successfully.
271 @retval EFI_NO_MAPPING The corresponding Ip6 instance has not
290 // Create a timer to check whether the Ip6 instance configured or not.
325 // Continue to configure the Udp6 instance.
365 The configure routine for Mtftp6 instance to transmit/receive.
374 @retval EFI_NO_MAPPING The corresponding Ip6 instance has not been
422 // Configure the Udp6 instance with current configure data.
436 Build and transmit the request packet for the Mtftp6 instance. [all...] |
Mtftp6Rrq.c | 22 @param[in] Instance The pointer to the Mtftp6 instance.
32 IN MTFTP6_INSTANCE *Instance,
59 // Reset current retry count of the instance.
61 Instance->CurRetry = 0;
62 Instance->LastPacket = Packet;
64 return Mtftp6TransmitPacket (Instance, Packet);
72 @param[in] Instance The pointer to the Mtftp6 instance.
86 IN MTFTP6_INSTANCE *Instance,
[all...] |
/hardware/qcom/media/msm8974/mm-core/omxcore/src/7630/ |
qc_registry_table_android.c | 43 NULL, // Create instance function 44 // Unique instance handle 59 NULL, // Create instance function 60 // Unique instance handle 75 NULL, // Create instance function 76 // Unique instance handle 91 NULL, // Create instance function 92 // Unique instance handle 107 NULL, // Create instance function 108 // Unique instance handl [all...] |
/external/testng/src/main/java/org/testng/ |
InstanceOrderingMethodInterceptor.java | 30 for (Object instance : methodInstances) { 31 if (!instanceList.contains(instance)) { 32 instanceList.add(instance); 34 List<IMethodInstance> l = map.get(instance); 37 map.put(instance, l); 44 for (Object instance : instanceList) { 45 result.addAll(map.get(instance));
|
/hardware/qcom/media/msm8974/mm-core/src/8960/ |
qc_registry_table.c | 44 NULL, // Create instance function 45 // Unique instance handle 60 NULL, // Create instance function 61 // Unique instance handle 76 NULL, // Create instance function 77 // Unique instance handle 92 NULL, // Create instance function 93 // Unique instance handle 108 NULL, // Create instance function 109 // Unique instance handl [all...] |
/hardware/qcom/media/msm8996/mm-core/src/8960/ |
qc_registry_table.c | 44 NULL, // Create instance function 45 // Unique instance handle 60 NULL, // Create instance function 61 // Unique instance handle 76 NULL, // Create instance function 77 // Unique instance handle 92 NULL, // Create instance function 93 // Unique instance handle 108 NULL, // Create instance function 109 // Unique instance handl [all...] |
/hardware/qcom/media/msm8996/mm-core/src/msm8996/ |
registry_table_android.c | 44 NULL, // Create instance function 45 // Unique instance handle 60 NULL, // Create instance function 61 // Unique instance handle 76 NULL, // Create instance function 77 // Unique instance handle 92 NULL, // Create instance function 93 // Unique instance handle 108 NULL, // Create instance function 109 // Unique instance handl [all...] |
/hardware/qcom/media/msm8998/mm-core/src/8960/ |
qc_registry_table.c | 44 NULL, // Create instance function 45 // Unique instance handle 60 NULL, // Create instance function 61 // Unique instance handle 76 NULL, // Create instance function 77 // Unique instance handle 92 NULL, // Create instance function 93 // Unique instance handle 108 NULL, // Create instance function 109 // Unique instance handl [all...] |
/hardware/qcom/media/msm8998/mm-core/src/msm8998/ |
registry_table_android.c | 44 NULL, // Create instance function 45 // Unique instance handle 60 NULL, // Create instance function 61 // Unique instance handle 76 NULL, // Create instance function 77 // Unique instance handle 92 NULL, // Create instance function 93 // Unique instance handle 108 NULL, // Create instance function 109 // Unique instance handl [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/ |
Ip4Config2Impl.c | 26 @param[in] Context Pointer to the IP4 config2 instance data.
39 @param[in, out] Instance The buffer of IP4 config2 instance to be freed.
47 IN OUT IP4_CONFIG2_INSTANCE *Instance
54 Dhcp4 = Instance->Dhcp4;
59 Instance->Dhcp4 = NULL;
61 IpSb = IP4_SERVICE_FROM_IP4_CONFIG2_INSTANCE (Instance);
67 Instance->Dhcp4Handle,
80 Instance->Dhcp4Handle
83 Instance->Dhcp4Handle = NULL; [all...] |
/cts/tests/tests/networksecurityconfig/networksecurityconfig-attributes/src/android/security/net/config/cts/ |
TestAttributes.java | 24 NetworkSecurityPolicy instance = NetworkSecurityPolicy.getInstance(); local 27 assertFalse(instance.isCleartextTrafficPermitted()); 29 assertFalse(instance.isCleartextTrafficPermitted("foo.bar")); 31 assertTrue(instance.isCleartextTrafficPermitted("example.foo.bar")); 34 assertTrue(instance.isCleartextTrafficPermitted("android.com")); 35 assertTrue(instance.isCleartextTrafficPermitted("foo.android.com")); 37 assertTrue(instance.isCleartextTrafficPermitted("example.com")); 38 assertTrue(instance.isCleartextTrafficPermitted("test.example.com")); 40 assertTrue(instance.isCleartextTrafficPermitted("example.com"));
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/complex/ |
ComplexField.java | 43 /** Get the unique instance. 44 * @return the unique instance 47 return LazyHolder.INSTANCE; 61 /** Holder for the instance. 65 /** Cached field instance. */ 66 private static final ComplexField INSTANCE = new ComplexField(); 71 * @return the singleton instance 74 // return the singleton instance 75 return LazyHolder.INSTANCE;
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/fraction/ |
BigFractionField.java | 43 /** Get the unique instance. 44 * @return the unique instance 47 return LazyHolder.INSTANCE; 61 /** Holder for the instance. 65 /** Cached field instance. */ 66 private static final BigFractionField INSTANCE = new BigFractionField(); 71 * @return the singleton instance 74 // return the singleton instance 75 return LazyHolder.INSTANCE;
|
FractionField.java | 43 /** Get the unique instance. 44 * @return the unique instance 47 return LazyHolder.INSTANCE; 61 /** Holder for the instance. 65 /** Cached field instance. */ 66 private static final FractionField INSTANCE = new FractionField(); 71 * @return the singleton instance 74 // return the singleton instance 75 return LazyHolder.INSTANCE;
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/ |
BigRealField.java | 43 /** Get the unique instance. 44 * @return the unique instance 47 return LazyHolder.INSTANCE; 61 /** Holder for the instance. 65 /** Cached field instance. */ 66 private static final BigRealField INSTANCE = new BigRealField(); 71 * @return the singleton instance 74 // return the singleton instance 75 return LazyHolder.INSTANCE;
|
/frameworks/av/media/libeffects/lvm/lib/Common/lib/ |
InstAlloc.h | 32 uintptr_t pNextMember; /* Pointer to the next instance member to be allocated */ 42 * Input : pms - Pointer to the INST_ALLOC instance 43 StartAddr - Base address of the instance memory 45 * Description : Initializes the instance distribution and memory size calculation function 54 * Input : pms - Pointer to the INST_ALLOC instance 57 * Description : Allocates space for a new member in the instance memory and returns 67 * Input : pms - Pointer to the INST_ALLOC instance 68 * Returns : The instance memory size 69 * Description : This functions returns the calculated instance memory size
|
/device/linaro/bootloader/edk2/SecurityPkg/Hash2DxeCrypto/ |
Driver.c | 25 @param[in] This Protocol instance pointer.
47 HASH2_INSTANCE_DATA *Instance;
57 // Allocate buffer for the new instance.
59 Instance = AllocateZeroPool (sizeof (HASH2_INSTANCE_DATA));
60 if (Instance == NULL) {
65 // Init the instance data.
67 Instance->Signature = HASH2_INSTANCE_DATA_SIGNATURE;
68 CopyMem (&Instance->Hash2Protocol, &mHash2Protocol, sizeof (Instance->Hash2Protocol));
69 Instance->Hash2ServiceData = Hash2ServiceData; [all...] |
/external/clang/test/Sema/ |
overloaded-func-transparent-union.c | 13 } Instance __attribute__((transparent_union)); 15 __attribute__((overloadable)) void Class_Init(Instance this, char *str, void *str2) { 20 __attribute__((overloadable)) void Class_Init(Instance this, char *str) {
|
/external/clang/test/SemaObjC/ |
no-ivar-in-interface-block.m | 6 @protected int P_IVAR; // expected-warning {{declaration of instance variables in the interface is deprecated}} 8 @public int PU_IVAR; // expected-warning {{declaration of instance variables in the interface is deprecated}} 10 @private int PRV_IVAR; // expected-warning {{declaration of instance variables in the interface is deprecated}}
|
property-dot-receiver.m | 8 + (Singleton*) instance; 15 + (Singleton*) instance { return 0; } 19 [Singleton.instance someSelector]; // clang issues error here
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/Ipf/ |
Fvb.c | 54 // The Instance translates into Fvb instance. The Fvb order defined by HOBs and
55 // thus the sequence of FVB protocol addition define Instance.
62 IN UINTN Instance,
74 Instance - The FV instance to be read from
90 return EfiCallEsalService (&Guid, Read, Instance, Lba, Offset, (UINT64) NumBytes, (UINT64) Buffer, 0, 0).Status;
95 IN UINTN Instance,
107 Instance - The FV instance to be written to [all...] |
/device/linaro/bootloader/edk2/NetworkPkg/Dhcp6Dxe/ |
Dhcp6Impl.c | 43 be called only when the state of Dhcp6 instance is in the Dhcp6Init state.
44 If the DHCP process completes successfully, the state of the Dhcp6 instance
56 @retval EFI_ACCESS_DENIED The EFI DHCPv6 Child instance hasn't been configured.
63 @retval EFI_ALREADY_STARTED Some other Dhcp6 instance already started the DHCPv6
77 DHCP6_INSTANCE *Instance;
84 Instance = DHCP6_INSTANCE_FROM_THIS (This);
85 Service = Instance->Service;
88 // The instance hasn't been configured.
90 if (Instance->Config == NULL) {
94 ASSERT (Instance->IaCb.Ia != NULL); [all...] |
/device/linaro/bootloader/edk2/NetworkPkg/Udp6Dxe/ |
Udp6Main.c | 31 instance into user-supplied buffers. This function is used optionally to retrieve
34 @param[in] This Pointer to the EFI_UDP6_PROTOCOL instance.
49 data is available because this instance has not
64 UDP6_INSTANCE_DATA *Instance;
73 Instance = UDP6_INSTANCE_DATA_FROM_THIS (This);
75 if (!Instance->Configured && (Udp6ConfigData != NULL)) {
85 CopyMem (Udp6ConfigData, &Instance->ConfigData, sizeof (EFI_UDP6_CONFIG_DATA));
88 Ip = Instance->IpInfo->Ip.Ip6;
103 Initialize and start this instance of the EFI UDPv6 Protocol.
105 Reset this instance of the EFI UDPv6 Protocol. [all...] |
/packages/apps/DeskClock/src/com/android/deskclock/alarms/ |
AlarmNotifications.java | 86 AlarmInstance instance) { 87 LogUtils.v("Displaying low priority notification for alarm instance: " + instance.mId); 93 .setContentText(AlarmUtils.getAlarmText(context, instance, true /* includeLabel */)) 97 .setSortKey(createSortKey(instance)) 109 AlarmStateManager.ALARM_DELETE_TAG, instance, 111 final int id = instance.hashCode(); 117 AlarmStateManager.ALARM_DISMISS_TAG, instance, AlarmInstance.PREDISMISSED_STATE); 123 // Setup content action if instance is owned by alarm 124 Intent viewAlarmIntent = createViewAlarmIntent(context, instance); [all...] |