HomeSort by relevance Sort by last modified time
    Searched refs:mac (Results 151 - 175 of 656) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/netfilter_ipv4/
ipt_ULOG.h 44 unsigned char mac[ULOG_MAC_LEN]; member in struct:ulog_packet_msg
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/netfilter_ipv4/
ipt_ULOG.h 44 unsigned char mac[ULOG_MAC_LEN]; member in struct:ulog_packet_msg
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/netfilter_ipv4/
ipt_ULOG.h 44 unsigned char mac[ULOG_MAC_LEN]; member in struct:ulog_packet_msg
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/netfilter_ipv4/
ipt_ULOG.h 44 unsigned char mac[ULOG_MAC_LEN]; member in struct:ulog_packet_msg
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/netfilter_ipv4/
ipt_ULOG.h 44 unsigned char mac[ULOG_MAC_LEN]; member in struct:ulog_packet_msg
  /external/apache-harmony/crypto/src/test/impl/java/org/apache/harmony/crypto/tests/javax/crypto/
Mac_ImplTest.java 33 import javax.crypto.Mac;
41 * Tests for Mac class constructors and methods
46 private static final String srvMac = "Mac";
83 protected void checkResult(Mac mac) throws InvalidKeyException,
85 assertEquals("Incorrect MacLength", mac.getMacLength(), 0);
90 mac.init(scs);
91 byte[] bb = mac.doFinal();
93 mac.reset();
94 bb = mac.doFinal()
    [all...]
  /external/chromium_org/chrome/test/base/
in_process_browser_test.h 22 namespace mac { namespace in namespace:base
24 } // namespace mac
152 // the Mac because re-using an existing browser process when launching from
153 // the command line isn't a concept that we support on the Mac; AppleEvents
154 // are the Mac solution for the same need. Any test based on these functions
155 // doesn't apply to the Mac.
161 base::mac::ScopedNSAutoreleasePool* AutoreleasePool() const {
209 base::mac::ScopedNSAutoreleasePool* autorelease_pool_;
chrome_test_suite.cc 40 #include "base/mac/bundle_locations.h"
41 #include "base/mac/scoped_nsautorelease_pool.h"
43 #include "base/mac/mac_util.h"
79 base::mac::ScopedNSAutoreleasePool autorelease_pool;
119 base::mac::SetOverrideFrameworkBundlePath(path);
125 base::mac::SetOverrideFrameworkBundle(NULL);
  /development/samples/Vault/src/com/example/android/vault/
EncryptedDocument.java 44 import javax.crypto.Mac;
85 private final Mac mMac;
104 mMac = Mac.getInstance("HmacSHA256");
110 throw new IllegalArgumentException("Expected MAC key length " + MAC_KEY_LENGTH);
131 * @throws DigestException if metadata fails MAC check, or if
174 * @throws DigestException if content fails MAC check. Some or all content
175 * may have already been written to the pipe when the MAC is
267 * Validates MAC of decrypted data, throwing if mismatch. When finished,
361 final byte[] mac = new byte[MAC_KEY_LENGTH]; field in class:EncryptedDocument.Section
366 f.readFully(mac);
    [all...]
  /external/chromium_org/base/test/expectations/
expectation.cc 12 #include "base/mac/mac_util.h"
48 } else if (name == "Mac") {
106 platform.name = "Mac";
107 if (base::mac::IsOSSnowLeopard())
109 else if (base::mac::IsOSLion())
111 else if (base::mac::IsOSMountainLion())
113 else if (base::mac::IsOSMavericks())
115 else if (base::mac::IsOSYosemite())
  /external/chromium_org/rlz/mac/lib/
machine_id_mac.cc 12 #include "base/mac/foundation_util.h"
13 #include "base/mac/scoped_cftyperef.h"
14 #include "base/mac/scoped_ioobject.h"
24 // See http://developer.apple.com/library/mac/#technotes/tn1103/_index.html
60 base::mac::ScopedIOObject<io_object_t> primary_interface;
66 base::mac::ScopedIOObject<io_object_t> primary_interface_parent_deleter(
78 CFDataRef mac_data_data = base::mac::CFCast<CFDataRef>(mac_data);
99 base::mac::ScopedIOObject<io_service_t> expert_device(
111 base::mac::CFCast<CFStringRef>(serial_number);
127 base::StringPrintf("mac:%02x%02x%02x%02x%02x%02x"
    [all...]
  /external/chromium_org/ui/events/keycodes/dom4/
keycode_converter.cc 12 #define USB_KEYMAP(usb, xkb, win, mac, code) {usb, win, code}
14 #define USB_KEYMAP(usb, xkb, win, mac, code) {usb, xkb, code}
16 #define USB_KEYMAP(usb, xkb, win, mac, code) {usb, mac, code}
18 #define USB_KEYMAP(usb, xkb, win, mac, code) {usb, 0, code}
  /external/wpa_supplicant_8/src/eap_common/
eap_pax_common.c 18 * @mac_id: MAC ID (EAP_PAX_MAC_*) / currently, only HMAC_SHA1_128 is supported
35 u8 mac[SHA1_MAC_LEN]; local
60 hmac_sha1_vector(key, key_len, 3, addr, len, mac);
61 os_memcpy(pos, mac, clen);
71 * eap_pax_mac - EAP-PAX MAC
72 * @mac_id: MAC ID (EAP_PAX_MAC_*) / currently, only HMAC_SHA1_128 is supported
81 * @mac: Buffer for the MAC value (EAP_PAX_MAC_LEN = 16 bytes)
84 * Wrapper function to calculate EAP-PAX MAC.
90 u8 *mac)
    [all...]
  /external/iptables/extensions/
libipt_CLUSTERIP.c 47 " --clustermac <mac> Set clusterIP MAC address\n"
95 xtables_error(PARAMETER_PROBLEM, "MAC has to be a multicast ethernet address\n");
133 static const char *mac2str(const uint8_t mac[ETH_ALEN])
137 mac[0], mac[1], mac[2], mac[3], mac[4], mac[5])
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
MacTest.java 36 import javax.crypto.Mac;
52 * Tests for Mac class constructors and methods
57 public static final String srvMac = "Mac";
67 private static final String NotSupportedMsg = "There is no suitable provider for Mac";
93 private Mac[] createMacs() throws Exception {
98 ArrayList<Mac> macList = new ArrayList<Mac>();
99 macList.add(Mac.getInstance(defaultAlgorithm));
100 macList.add(Mac.getInstance(defaultAlgorithm, defaultProvider));
101 macList.add(Mac.getInstance(defaultAlgorithm, defaultProviderName))
140 Mac mac; local
218 Mac mac; local
283 Mac mac; local
767 Mac mac = new myMac(spi, defaultProvider, defaultAlgorithm); local
793 Mac mac; local
804 Mac mac; local
849 Mac mac = Mac.getInstance("HmacMD5", providers[i]); local
    [all...]
  /external/oauth/core/src/main/java/net/oauth/signature/
HMAC_SHA1.java 23 import javax.crypto.Mac;
74 Mac mac = Mac.getInstance(MAC_NAME); local
75 mac.init(key);
77 return mac.doFinal(text);
  /external/chromium_org/base/files/
file_path_watcher.cc 14 #include "base/mac/mac_util.h"
34 return mac::IsOSLionOrLater();
  /external/chromium_org/base/mac/
authorization_util.h 23 // http://developer.apple.com/library/mac/#samplecode/BetterAuthorizationSample/Listings/BetterAuthorizationSampleLib_c.html
34 namespace mac { namespace in namespace:base
79 } // namespace mac
bundle_locations.h 22 namespace mac { namespace in namespace:base
64 } // namespace mac
libdispatch_task_runner.h 14 namespace mac { namespace in namespace:base
78 } // namespace mac
os_crash_dumps.cc 5 #include "base/mac/os_crash_dumps.h"
14 namespace mac { namespace in namespace:base
59 } // namespace mac
scoped_mach_vm.cc 5 #include "base/mac/scoped_mach_vm.h"
8 namespace mac { namespace in namespace:base
32 } // namespace mac
scoped_objc_class_swizzler.h 14 namespace mac { namespace in namespace:base
46 } // namespace mac
  /external/chromium_org/chrome/browser/ui/cocoa/passwords/
manage_passwords_bubble_content_view_controller.h 12 namespace mac { namespace in namespace:password_manager
19 } // namespace mac
  /external/chromium_org/chrome/common/extensions/image_writer/
image_writer_util_mac.cc 9 #include "base/mac/scoped_cftyperef.h"
10 #include "base/mac/scoped_ioobject.h"
19 base::mac::ScopedIOObject<io_object_t> parent_obj_ref(parent_obj);

Completed in 7766 milliseconds

1 2 3 4 5 67 8 91011>>