HomeSort by relevance Sort by last modified time
    Searched refs:Mac (Results 76 - 100 of 201) sorted by null

1 2 34 5 6 7 8 9

  /build/make/tools/droiddoc/templates-ndk/
sdkpage.cs 120 <td>Mac OS X 32-bit</td>
136 <td>Mac OS X 64-bit</td>
295 <td><nobr>Mac OS X</nobr></td>
297 <a onclick="return onDownload(this)" id="mac-tools" href="http://dl.google.com/android/<?cs
365 <td><nobr>Mac OS X</nobr></td>
367 <a onclick="return onDownload(this)" id="mac-bundle"
415 } else if (navigator.appVersion.indexOf("Mac")!=-1) {
416 os = "Mac";
417 bundlename = '#mac-bundle';
418 $toolslink = $('#mac-tools')
    [all...]
  /development/samples/Vault/src/com/example/android/vault/
VaultProvider.java 54 import javax.crypto.Mac;
94 private static final byte[] BLOB_MAC = "MAC".getBytes(StandardCharsets.UTF_8);
166 * MAC keys. The symmetric secret key is stored securely on disk by wrapping
189 final Mac mac = Mac.getInstance("HmacSHA256"); local
190 mac.init(key);
196 System.arraycopy(mac.doFinal(BLOB_DATA), 0, rawDataKey, 0, rawDataKey.length);
197 System.arraycopy(mac.doFinal(BLOB_MAC), 0, rawMacKey, 0, rawMacKey.length);
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/
IScsiMisc.c 355 Convert the mac address into a hexadecimal encoded "-" seperated string.
357 @param[in] Mac The mac address.
358 @param[in] Len Length in bytes of the mac address.
360 @param[out] Str The storage to return the mac string.
364 IN EFI_MAC_ADDRESS *Mac,
374 Str[3 * Index] = (CHAR16) IScsiHexString[(Mac->Addr[Index] >> 4) & 0x0F];
375 Str[3 * Index + 1] = (CHAR16) IScsiHexString[Mac->Addr[Index] & 0x0F];
642 // Get the mac string, it's the name of various variable
710 // Get the mac string, it's the name of various variable
    [all...]
IScsiIbft.c 331 CopyMem (Nic->Mac, MacAddress.Addr, sizeof (Nic->Mac));
IScsiConfig.c 251 (NET_MAC_EQUAL (&CurMacInfo->Mac, MacAddress.Addr, HwAddressSize))
258 // Swap the current MAC address entry with the one indexed by
280 IScsiMacAddrToStr (&CurMacInfo->Mac, CurMacInfo->Len, CurMacInfo->VlanId, MacString);
302 CopyMem (&CurMacInfo->Mac, MacAddress.Addr, HwAddressSize);
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/EmuSnpDxe/
EmuSnpDxe.c 221 @param McastFilterCount Number of multicast HW MAC addresses in the new
225 @param McastFilter A pointer to a list of new multicast receive filter HW MAC
227 HW MAC address list. This field is optional if
327 Converts a multicast IP address to a multicast HW MAC address.
333 HW MAC address.
334 @param Mac The multicast HW MAC address that is to be generated from IP.
337 HW MAC address.
351 OUT EFI_MAC_ADDRESS *Mac
359 Status = Private->Io->MCastIpToMac (Private->Io, Ipv6, Ip, Mac);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Dhcp4Dxe/
Dhcp4Driver.c 226 // Create various resources, UdpIo, Timer, and get Mac address
255 CopyMem (&DhcpSb->Mac, &DhcpSb->UdpIo->SnpMode.CurrentAddress, sizeof (DhcpSb->Mac));
  /device/linaro/bootloader/edk2/NetworkPkg/IScsiDxe/
IScsiIbft.c 333 // Get Nic Info: VLAN tag, Mac address, PCI location.
339 CopyMem (Nic->Mac, &NicInfo->PermanentAddress, sizeof (Nic->Mac));
IScsiMisc.c 281 Convert the mac address into a hexadecimal encoded "-" seperated string.
283 @param[in] Mac The mac address.
284 @param[in] Len Length in bytes of the mac address.
286 @param[out] Str The storage to return the mac string.
291 IN EFI_MAC_ADDRESS *Mac,
301 Str[3 * Index] = (CHAR16) IScsiHexString[(Mac->Addr[Index] >> 4) & 0x0F];
302 Str[3 * Index + 1] = (CHAR16) IScsiHexString[Mac->Addr[Index] & 0x0F];
491 // Get MAC address of this network device.
578 // Get MAC address of this network device.
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Common.c 137 This function converts MAC address to 64 bits interface ID according to RFC4291
138 and returns the interface ID. Currently only 48-bit MAC address is supported by
171 // Convert MAC address to 64 bits interface ID according to Appendix A of RFC4291:
195 interface identifier is normally created from MAC address. It might be manually
196 configured by administrator if the link-local address created from MAC address
238 // MAC address.
399 its solicited-node multicast MAC address from the filter list and sends out
560 Check whether the incoming MAC address is valid.
563 @param[in] LinkAddress The MAC address.
626 Get the MAC address for a multicast IP address. Call
    [all...]
  /build/make/tools/droiddoc/templates-pdk/
sdkpage.cs 113 <td>Mac OS X (intel)</td>
182 <td>Mac OS X (intel)</td>
  /device/linaro/bootloader/edk2/EmbeddedPkg/Drivers/Lan9118Dxe/
Lan9118Dxe.c 121 // LAN9118 has 64bit hash table, can filter 64 MCast MAC Addresses
129 // Mac address is changeable as it is loaded from erasable memory
142 // Power up the device so we can find the MAC address
520 @param[in] MCastFilterCnt Number of multicast HW MAC addresses in the new
526 filter HW MAC addresses. This list will replace
527 any existing multicast HW MAC address list. This
543 multicast MAC addresses.
566 EFI_MAC_ADDRESS *Mac;
591 // hash values of the multicast mac addresses to listen to.
618 Mac = &(MCastFilter[Count]);
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/VirtioNetDxe/
VirtioNet.h 47 // | stopped | allocated for traffic, but MAC address has
206 OUT EFI_MAC_ADDRESS *Mac
  /frameworks/base/keystore/java/android/security/keystore/
KeyProtection.java 33 import javax.crypto.Mac;
117 * Mac mac = Mac.getInstance("HmacSHA512");
118 * mac.init(keyStoreKey);
    [all...]
KeyGenParameterSpec.java 36 import javax.crypto.Mac;
216 * <p><h3>Example: HMAC key for generating a MAC using SHA-256</h3>
225 * Mac mac = Mac.getInstance("HmacSHA256");
226 * mac.init(key);
    [all...]
  /external/skia/infra/bots/
gen_tasks.go 105 task_os = "Mac"
140 "Mac": "Mac-10.11",
225 if strings.Contains(name, "Mac") {
250 // TODO(stephana): Remove this once all Mac machines are on the same
254 if strings.Contains(name, "Mac") {
257 dimensions[idx] = "os:Mac-10.12"
  /device/linaro/bootloader/edk2/Nt32Pkg/SnpNt32Dxe/
SnpNt32.c 153 @param McastFilterCount Number of multicast HW MAC addresses in the new
157 @param McastFilter A pointer to a list of new multicast receive filter HW MAC
159 HW MAC address list. This field is optional if
225 Converts a multicast IP address to a multicast HW MAC address.
231 HW MAC address.
232 @param Mac The multicast HW MAC address that is to be generated from IP.
235 HW MAC address.
249 OUT EFI_MAC_ADDRESS *Mac
322 @param SrcAddr The source HW MAC address. If HeaderSize is zero, then this parameter
    [all...]
  /external/bison/
cfg.mk 64 # At least for Mac OS X's grep, the order between . and [ in "[^.[]"
  /external/v8/tools/vim/
ninja-build.vim 5 " Adds a "Compile this file" function, using ninja. On Mac, binds Cmd-k to
111 if has('mac')
  /external/boringssl/src/crypto/perlasm/
x86asm.pl 298 macosx - Mac OS X
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
NetLib.h 183 #define NET_MAC_IS_MULTICAST(Mac, BMac, Len) \
184 (((*((UINT8 *) Mac) & 0x01) == 0x01) && (!NET_MAC_EQUAL (Mac, BMac, Len)))
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/config/
Makefile 128 # Executable suffix (.exe on Windows and Mac OS X)
132 # Short name and location for Mac OS X Python framework
144 # Options to enable prebinding (for fast startup prior to Mac OS X 10.3)
161 SRCDIRS= Parser Grammar Objects Python Modules Mac
520 RESSRCDIR=Mac/Resources/framework
940 PLATMACDIRS= plat-mac plat-mac/Carbon plat-mac/lib-scriptpackages \
941 plat-mac/lib-scriptpackages/_builtinSuites \
942 plat-mac/lib-scriptpackages/CodeWarrior
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/config/
Makefile 128 # Executable suffix (.exe on Windows and Mac OS X)
132 # Short name and location for Mac OS X Python framework
144 # Options to enable prebinding (for fast startup prior to Mac OS X 10.3)
161 SRCDIRS= Parser Grammar Objects Python Modules Mac
521 RESSRCDIR=Mac/Resources/framework
941 PLATMACDIRS= plat-mac plat-mac/Carbon plat-mac/lib-scriptpackages \
942 plat-mac/lib-scriptpackages/_builtinSuites \
943 plat-mac/lib-scriptpackages/CodeWarrior
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/config/
Makefile 128 # Executable suffix (.exe on Windows and Mac OS X)
132 # Short name and location for Mac OS X Python framework
144 # Options to enable prebinding (for fast startup prior to Mac OS X 10.3)
161 SRCDIRS= Parser Grammar Objects Python Modules Mac
520 RESSRCDIR=Mac/Resources/framework
940 PLATMACDIRS= plat-mac plat-mac/Carbon plat-mac/lib-scriptpackages \
941 plat-mac/lib-scriptpackages/_builtinSuites \
942 plat-mac/lib-scriptpackages/CodeWarrior
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/config/
Makefile 128 # Executable suffix (.exe on Windows and Mac OS X)
132 # Short name and location for Mac OS X Python framework
144 # Options to enable prebinding (for fast startup prior to Mac OS X 10.3)
161 SRCDIRS= Parser Grammar Objects Python Modules Mac
521 RESSRCDIR=Mac/Resources/framework
941 PLATMACDIRS= plat-mac plat-mac/Carbon plat-mac/lib-scriptpackages \
942 plat-mac/lib-scriptpackages/_builtinSuites \
943 plat-mac/lib-scriptpackages/CodeWarrior
    [all...]

Completed in 989 milliseconds

1 2 34 5 6 7 8 9