HomeSort by relevance Sort by last modified time
    Searched refs:mac (Results 251 - 275 of 610) sorted by null

<<11121314151617181920>>

  /external/openssl/ssl/
ssl_ciph.c 302 /* MAC aliases */
419 ssl_mac_pkey_id[SSL_MD_GOST89MAC_IDX] = get_optional_pkey_id("gost-mac");
696 static void ssl_cipher_get_disabled(unsigned long *mkey, unsigned long *auth, unsigned long *enc, unsigned long *mac, unsigned long *ssl)
701 *mac = 0;
767 *mac |= (ssl_digest_methods[SSL_MD_MD5_IDX ] == NULL) ? SSL_MD5 :0;
768 *mac |= (ssl_digest_methods[SSL_MD_SHA1_IDX] == NULL) ? SSL_SHA1:0;
769 *mac |= (ssl_digest_methods[SSL_MD_SHA256_IDX] == NULL) ? SSL_SHA256:0;
770 *mac |= (ssl_digest_methods[SSL_MD_SHA384_IDX] == NULL) ? SSL_SHA384:0;
771 *mac |= (ssl_digest_methods[SSL_MD_GOST94_IDX] == NULL) ? SSL_GOST94:0;
772 *mac |= (ssl_digest_methods[SSL_MD_GOST89MAC_IDX] == NULL || ssl_mac_pkey_id[SSL_MD_GOST89MAC_IDX]==NID (…)
1539 const char *kx,*au,*enc,*mac; local
    [all...]
  /bionic/libc/kernel/common/linux/
if_link.h 241 __u8 mac[32]; member in struct:ifla_vf_mac
257 __u8 mac[32]; member in struct:ifla_vf_info
  /external/chromium/chrome/browser/policy/
configuration_policy_provider_mac.cc 9 #include "base/mac/scoped_cftyperef.h"
17 // This constructs the path to the plist file in which Mac OS X stores the
53 base::mac::ScopedCFTypeRef<CFStringRef> name(
55 base::mac::ScopedCFTypeRef<CFPropertyListRef> value(
  /external/chromium/chrome/common/
service_process_util_unittest.cc 233 #include "base/mac/mac_util.h"
234 #include "base/mac/scoped_cftyperef.h"
275 base::mac::ScopedCFTypeRef<CFStringRef> path(
278 base::mac::ScopedCFTypeRef<CFArrayRef> args(
311 base::mac::ScopedCFTypeRef<CFDictionaryRef> dict(
423 base::mac::ScopedCFTypeRef<CFURLRef> url(
428 base::mac::ScopedCFTypeRef<CFBundleRef> bundle(
481 EXPECT_TRUE(base::mac::FSRefFromPath(src.value(), &path_ref));
528 ASSERT_TRUE(base::mac::FSRefFromPath(bundle_path().value(), &bundle_ref));
535 std::string path(base::mac::PathFromFSRef(bundle_ref))
    [all...]
  /external/chromium_org/remoting/host/
desktop_resizer_mac.cc 10 #include "base/mac/foundation_util.h"
11 #include "base/mac/mac_util.h"
12 #include "base/mac/scoped_cftyperef.h"
49 if (!base::mac::IsOSSnowLeopard() && GetSoleDisplayId(&display)) {
68 if (base::mac::IsOSSnowLeopard() || !GetSoleDisplayId(&display)) {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
mac_unittest.py 31 from webkitpy.layout_tests.port import mac namespace
37 os_name = 'mac'
39 port_name = 'mac'
40 port_maker = mac.MacPort
47 self.assertTrue(self.make_port().name() in ('mac-snowleopard', 'mac-lion', 'mac-mountainlion', 'mac-mavericks'))
49 self.assert_name(None, 'snowleopard', 'mac-snowleopard')
50 self.assert_name('mac', 'snowleopard', 'mac-snowleopard'
    [all...]
  /external/chromium_org/v8/
Makefile.nacl 38 HOST_OS = $(shell uname -s | sed -e 's/Linux/linux/;s/Darwin/mac/')
42 ifeq ($(HOST_OS), mac)
  /external/kernel-headers/original/linux/
if_link.h 259 __u8 mac[32]; /* MAX_ADDR_LEN */ member in struct:ifla_vf_mac
275 __u8 mac[32]; member in struct:ifla_vf_info
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
CCMBlockCipher.java 9 import org.bouncycastle.crypto.Mac;
150 * Returns a byte array containing the mac calculated as part of the
153 * @return the last mac calculated.
157 byte[] mac = new byte[macSize];
159 System.arraycopy(macBlock, 0, mac, 0, mac.length);
161 return mac;
185 // Need to keep the CTR and CBC Mac parts around and reset
274 throw new InvalidCipherTextException("mac check in CCM failed");
283 Mac cMac = new CBCBlockCipherMac(cipher, macSize * 8)
    [all...]
  /external/chromium/base/i18n/
icu_util.cc 25 #include "base/mac/foundation_util.h"
86 // Mac/Linux bundle the ICU data in.
105 // Instead, Mac maps the file in and hands off the data so the sandbox won't
114 base::mac::PathForMainAppBundleResource(CFSTR(ICU_UTIL_DATA_FILE_NAME));
  /external/chromium/chrome/browser/ui/cocoa/
cocoa_test_helper.h 12 #import "base/mac/scoped_nsautorelease_pool.h"
91 base::mac::ScopedNSAutoreleasePool pool_;
  /external/chromium_org/base/mac/
mac_util.h 16 #include "base/mac/foundation_util.h"
28 namespace mac { namespace in namespace:base
128 // Snow Leopard is Mac OS X 10.6, Darwin 10.
131 // Lion is Mac OS X 10.7, Darwin 11.
136 // Mountain Lion is Mac OS X 10.8, Darwin 12.
141 // Mavericks is Mac OS X 10.9, Darwin 13.
210 } // namespace mac
  /external/chromium_org/device/bluetooth/
bluetooth_adapter_factory.cc 20 #include "base/mac/mac_util.h"
70 return base::mac::IsOSLionOrLater();
  /external/chromium_org/gpu/gles2_conform_support/
gles2_conform_test.cc 16 #include "base/mac/scoped_nsautorelease_pool.h"
86 base::mac::ScopedNSAutoreleasePool pool;
  /external/chromium_org/net/cert/
test_root_certs_mac.cc 10 #include "base/mac/mac_util.h"
11 #include "base/mac/scoped_cftyperef.h"
75 if (base::mac::IsOSLionOrLater()) {
  /external/chromium_org/net/third_party/nss/ssl/
sslgathr.c 47 ** and checks and discards the MAC, then advances to GS_INIT.
210 ** Check the MAC.
217 unsigned char mac[SSL_MAX_MAC_BYTES]; local
252 /* Have read in all the MAC portion of record
254 ** Prepare MAC by resetting it and feeding it the shared secret
272 (*ss->sec.hash->end)(ss->sec.hashcx, mac, &macLen, macLen);
278 if (NSS_SecureMemcmp(mac, pBuf, macLen) != 0) {
279 /* MAC's didn't match... */
280 SSL_DBG(("%d: SSL[%d]: mac check failed, seq=%d",
282 PRINT_BUF(1, (ss, "computed mac:", mac, macLen))
    [all...]
  /external/chromium_org/ui/base/test/
ui_cocoa_test_helper.h 13 #import "base/mac/scoped_nsautorelease_pool.h"
87 base::mac::ScopedNSAutoreleasePool pool_;
  /external/chromium_org/ui/gl/
gl_implementation_mac.cc 8 #include "base/mac/foundation_util.h"
51 base::FilePath bundle_path = base::mac::GetAppBundlePath(exe_path);
gpu_switching_manager.cc 12 #include "base/mac/mac_util.h"
91 if (flag && !base::mac::IsOSLionOrLater())
  /external/chromium_org/ui/message_center/cocoa/
tray_view_controller.h 14 #include "base/mac/scoped_block.h"
15 #import "base/mac/scoped_nsobject.h"
107 base::mac::ScopedBlock<message_center::TrayAnimationEndedCallback>
  /external/wpa_supplicant_8/src/ap/
ap_drv_ops.h 193 const u8 *mac, int accepted,
198 return hapd->driver->set_radius_acl_auth(hapd->drv_priv, mac, accepted,
203 const u8 *mac)
208 return hapd->driver->set_radius_acl_expire(hapd->drv_priv, mac);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
armCOMM.c 647 * accumulation with Mac
652 * [in] Mac Accumulator
658 OMX_S32 armSatMac_S32(OMX_S32 Mac,OMX_S16 Value1,OMX_S16 Value2)
663 Result = armSatAdd_S32( Mac , Result );
672 * Returns the result of saturated MAC operation of the three inputs delayElem, filTap , mac
674 * mac = mac + Saturate_in_32Bits(delayElem * filTap)
679 * [in] mac Result of MAC operatio
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/src/
armCOMM.c 647 * accumulation with Mac
652 * [in] Mac Accumulator
658 OMX_S32 armSatMac_S32(OMX_S32 Mac,OMX_S16 Value1,OMX_S16 Value2)
663 Result = armSatAdd_S32( Mac , Result );
672 * Returns the result of saturated MAC operation of the three inputs delayElem, filTap , mac
674 * mac = mac + Saturate_in_32Bits(delayElem * filTap)
679 * [in] mac Result of MAC operatio
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/src/
armCOMM.c 647 * accumulation with Mac
652 * [in] Mac Accumulator
658 OMX_S32 armSatMac_S32(OMX_S32 Mac,OMX_S16 Value1,OMX_S16 Value2)
663 Result = armSatAdd_S32( Mac , Result );
672 * Returns the result of saturated MAC operation of the three inputs delayElem, filTap , mac
674 * mac = mac + Saturate_in_32Bits(delayElem * filTap)
679 * [in] mac Result of MAC operatio
    [all...]
  /external/chromium/net/base/
keygen_handler_mac.cc 13 #include "base/mac/scoped_cftyperef.h"
115 base::mac::ScopedCFTypeRef<CFStringRef> label(
141 base::mac::ScopedCFTypeRef<CFDataRef> scoped_key_data(key_data);
236 base::mac::ScopedCFTypeRef<SecKeychainRef> scoped_keychain(keychain);

Completed in 1651 milliseconds

<<11121314151617181920>>