/external/llvm/tools/lli/ |
RemoteMemoryManager.cpp | 64 std::error_code ec; local 69 ec); 70 assert(!ec && MB.base());
|
/external/parameter-framework/asio-1.10.6/include/asio/ |
basic_stream_socket.hpp | 236 asio::error_code ec; local 238 this->get_implementation(), buffers, 0, ec); 239 asio::detail::throw_error(ec, "send"); 274 asio::error_code ec; local 276 this->get_implementation(), buffers, flags, ec); 277 asio::detail::throw_error(ec, "send"); 291 * @param ec Set to indicate what error occurred, if any. 301 socket_base::message_flags flags, asio::error_code& ec) 304 this->get_implementation(), buffers, flags, ec); 441 asio::error_code ec; local 482 asio::error_code ec; local 650 asio::error_code ec; local 760 asio::error_code ec; local [all...] |
basic_socket_acceptor.hpp | 100 asio::error_code ec; local 101 this->get_service().open(this->get_implementation(), protocol, ec); 102 asio::detail::throw_error(ec, "open"); 136 asio::error_code ec; local 138 this->get_service().open(this->get_implementation(), protocol, ec); 139 asio::detail::throw_error(ec, "open"); 143 socket_base::reuse_address(true), ec); 144 asio::detail::throw_error(ec, "set_option"); 146 this->get_service().bind(this->get_implementation(), endpoint, ec); 147 asio::detail::throw_error(ec, "bind") 172 asio::error_code ec; local 276 asio::error_code ec; local 320 asio::error_code ec; local 369 asio::error_code ec; local 415 asio::error_code ec; local 459 asio::error_code ec; local 523 asio::error_code ec; local 565 asio::error_code ec; local 629 asio::error_code ec; local 692 asio::error_code ec; local 761 asio::error_code ec; local 822 asio::error_code ec; local 867 asio::error_code ec; local 923 asio::error_code ec; local 1043 asio::error_code ec; local [all...] |
/external/parameter-framework/upstream/remote-processor/ |
RemoteProcessorServer.cpp | 85 auto peerHandler = [this, &commandHandler](asio::error_code ec) { 86 if (ec) { 87 std::cerr << "Accept failed: " << ec.message() << std::endl; 106 asio::error_code ec; local 108 _io_service.run(ec); 110 if (ec) { 111 std::cerr << "Server failed: " << ec.message() << std::endl; 114 return ec.value() == 0;
|
Message.cpp | 135 asio::error_code ec; local 149 if (!asio::write(asioSocket, asio::buffer(&uiSyncWord, sizeof(uiSyncWord)), ec)) { 151 if (ec == asio::error::eof) { 160 if (!asio::write(asioSocket, asio::buffer(&uiSize, sizeof(uiSize)), ec)) { 162 strError += string("Size write failed: ") + ec.message(); 167 if (!asio::write(asioSocket, asio::buffer(&_ucMsgId, sizeof(_ucMsgId)), ec)) { 169 strError += string("Msg write failed: ") + ec.message(); 174 if (!asio::write(asioSocket, asio::buffer(mData), ec)) { 176 strError = string("Data write failed: ") + ec.message(); 183 if (!asio::write(asioSocket, asio::buffer(&ucChecksum, sizeof(ucChecksum)), ec)) { 192 asio::error_code ec; local [all...] |
/external/boringssl/src/crypto/evp/ |
p_ec.c | 64 #include <openssl/ec.h> 73 #include "../ec/internal.h" 129 EC_KEY *ec = ctx->pkey->pkey.ec; local 132 *siglen = ECDSA_size(ec); 134 } else if (*siglen < (size_t)ECDSA_size(ec)) { 139 if (!ECDSA_sign(0, tbs, tbslen, sig, &sltmp, ec)) { 148 return ECDSA_verify(0, tbs, tbslen, sig, siglen, ctx->pkey->pkey.ec); 163 eckey = ctx->pkey->pkey.ec; 171 pubkey = EC_KEY_get0_public_key(ctx->peerkey->pkey.ec); 229 EC_KEY *ec = NULL; local 251 EC_KEY *ec = NULL; local [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/ |
KeyAgreementSpi.java | 1 package org.bouncycastle.jcajce.provider.asymmetric.ec;
|
KeyFactorySpi.java | 1 package org.bouncycastle.jcajce.provider.asymmetric.ec; 186 public static class EC 189 public EC() 191 super("EC", BouncyCastleProvider.CONFIGURATION);
|
BCECPrivateKey.java | 1 package org.bouncycastle.jcajce.provider.asymmetric.ec; 37 import org.bouncycastle.math.ec.ECCurve; 45 private String algorithm = "EC"; 226 org.bouncycastle.asn1.sec.ECPrivateKey ec = org.bouncycastle.asn1.sec.ECPrivateKey.getInstance(privKey); local 228 this.d = ec.getKey(); 229 this.publicKey = ec.getPublicKey(); 394 buf.append("EC Private Key").append(nl);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
FixedPointUtil.java | 1 package org.bouncycastle.math.ec;
|
WTauNafMultiplier.java | 1 package org.bouncycastle.math.ec; 15 * Multiplies a {@link org.bouncycastle.math.ec.ECPoint.AbstractF2m ECPoint.AbstractF2m} 43 * Multiplies a {@link org.bouncycastle.math.ec.ECPoint.AbstractF2m ECPoint.AbstractF2m} 66 * Multiplies a {@link org.bouncycastle.math.ec.ECPoint.AbstractF2m ECPoint.AbstractF2m}
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/endo/ |
GLVTypeBParameters.java | 1 package org.bouncycastle.math.ec.endo;
|
/external/clang/test/Sema/ |
attr-flag-enum.c | 6 ec = 0x8, enumerator in enum:flag
|
/external/libcxx/src/ |
mutex.cpp | 32 int ec = pthread_mutex_lock(&__m_); local 33 if (ec) 34 __throw_system_error(ec, "mutex lock failed"); 46 int ec = pthread_mutex_unlock(&__m_); variable 47 (void)ec; variable 48 assert(ec == 0); 56 int ec = pthread_mutexattr_init(&attr); local 57 if (ec) 59 ec = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE); 60 if (ec) 92 int ec = pthread_mutex_lock(&__m_); local [all...] |
/external/llvm/lib/ExecutionEngine/ |
SectionMemoryManager.cpp | 86 std::error_code ec; local 91 ec); 92 if (ec) { 128 std::error_code ec; local 131 ec = applyMemoryGroupPermissions(CodeMem, 133 if (ec) { 135 *ErrMsg = ec.message(); 144 ec = applyMemoryGroupPermissions(RODataMem, 146 if (ec) { 148 *ErrMsg = ec.message() [all...] |
/external/parameter-framework/asio-1.10.6/include/asio/impl/ |
connect.hpp | 43 asio::error_code ec; local 44 Iterator result = connect(s, begin, ec); 45 asio::detail::throw_error(ec, "connect"); 51 Iterator begin, asio::error_code& ec) 53 return connect(s, begin, Iterator(), detail::default_connect_condition(), ec); 60 asio::error_code ec; local 61 Iterator result = connect(s, begin, end, ec); 62 asio::detail::throw_error(ec, "connect"); 68 Iterator begin, Iterator end, asio::error_code& ec) 70 return connect(s, begin, end, detail::default_connect_condition(), ec); 78 asio::error_code ec; local 98 asio::error_code ec; local [all...] |
read.hpp | 37 CompletionCondition completion_condition, asio::error_code& ec) 39 ec = asio::error_code(); 44 completion_condition(ec, total_transferred))); 47 std::size_t bytes_transferred = s.read_some(tmp, ec); 51 completion_condition(ec, total_transferred))); 59 asio::error_code ec; local 60 std::size_t bytes_transferred = read(s, buffers, transfer_all(), ec); 61 asio::detail::throw_error(ec, "read"); 67 asio::error_code& ec) 69 return read(s, buffers, transfer_all(), ec); 77 asio::error_code ec; local [all...] |
write.hpp | 35 CompletionCondition completion_condition, asio::error_code& ec) 37 ec = asio::error_code(); 42 completion_condition(ec, total_transferred))); 45 std::size_t bytes_transferred = s.write_some(tmp, ec); 49 completion_condition(ec, total_transferred))); 57 asio::error_code ec; local 58 std::size_t bytes_transferred = write(s, buffers, transfer_all(), ec); 59 asio::detail::throw_error(ec, "write"); 65 asio::error_code& ec) 67 return write(s, buffers, transfer_all(), ec); 75 asio::error_code ec; local [all...] |
/libcore/ojluni/src/main/java/sun/security/ec/ |
ECKeyFactory.java | 27 package sun.security.ec; 34 * KeyFactory for EC keys. Keys must be instances of PublicKey or PrivateKey 35 * and getAlgorithm() must return "EC". For such keys, it supports conversion 60 // This can go away once we have EC always available in the SUN provider. 71 p.put("KeyFactory.EC", ECKeyFactory.class.getName()); 72 p.put("AlgorithmParameters.EC", ECParameters.class.getName()); 73 p.put("Alg.Alias.AlgorithmParameters.1.2.840.10045.2.1", "EC"); 78 INSTANCE = KeyFactory.getInstance("EC", p); 92 * to a Sun key if necessary. If the key is not an EC key 112 * Check that the given EC key is valid [all...] |
ECPrivateKeyImpl.java | 26 package sun.security.ec; 40 * Key implementation for EC private keys. 42 * ASN.1 syntax for EC private keys from SEC 1 v1.5 (draft): 104 return "EC"; 146 throw new InvalidKeyException("EC domain parameters must be " 151 throw new InvalidKeyException("Invalid EC private key", e); 153 throw new InvalidKeyException("Invalid EC private key", e); 159 return "Sun EC private key, " + params.getCurve().getField().getFieldSize()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
mutex.cpp | 31 int ec = pthread_mutex_lock(&__m_); local 32 if (ec) 33 __throw_system_error(ec, "mutex lock failed"); 45 int ec = pthread_mutex_unlock(&__m_); variable 46 (void)ec; variable 47 assert(ec == 0); 55 int ec = pthread_mutexattr_init(&attr); local 56 if (ec) 58 ec = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE); 59 if (ec) 91 int ec = pthread_mutex_lock(&__m_); local [all...] |
/device/generic/goldfish/camera/ |
EmulatedCamera3.cpp | 195 EmulatedCamera3* ec = getInstance(d); local 196 return ec->initializeDevice(callback_ops); 201 EmulatedCamera3* ec = getInstance(d); local 202 return ec->configureStreams(stream_list); 208 EmulatedCamera3* ec = getInstance(d); local 209 return ec->registerStreamBuffers(buffer_set); 215 EmulatedCamera3* ec = getInstance(d); local 216 return ec->processCaptureRequest(request); 221 EmulatedCamera3* ec = getInstance(d); local 222 return ec->constructDefaultRequestSettings(type) 226 EmulatedCamera3* ec = getInstance(d); local 231 EmulatedCamera3* ec = getInstance(d); local 236 EmulatedCamera3* ec = local [all...] |
/device/google/dragon/recovery/updater/ |
update_fw.cpp | 83 static int update_recovery_fw(struct flash_device *spi, struct flash_device *ec, 99 } else { /* Update both RO & RW on SPI + EC */ 103 // TODO Update EC with ec_file 104 (void)ec; 172 struct flash_device *img, *spi, *ec; local 202 ec = flash_open("ec", NULL); 203 if (!ec) 213 res = update_recovery_fw(spi, ec, img, ec_file); 222 flash_close(ec); [all...] |
/external/aac/libAACenc/src/ |
bit_cnt.cpp | 455 INT bc11,ec,sc; local 460 ec=0; 472 ec+=5; 474 ec+=2; 478 ec+=5; 480 ec+=2; 487 bitCount[11]=bc11+sc+ec;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/ec/ |
CustomNamedCurves.java | 1 package org.bouncycastle.crypto.ec; 13 import org.bouncycastle.math.ec.ECCurve; 14 import org.bouncycastle.math.ec.ECPoint; 16 // import org.bouncycastle.math.ec.custom.djb.Curve25519; 17 // import org.bouncycastle.math.ec.custom.sec.SecP128R1Curve; 18 // import org.bouncycastle.math.ec.custom.sec.SecP160K1Curve; 19 // import org.bouncycastle.math.ec.custom.sec.SecP160R1Curve; 20 // import org.bouncycastle.math.ec.custom.sec.SecP160R2Curve; 22 import org.bouncycastle.math.ec.custom.sec.SecP192K1Curve; 23 import org.bouncycastle.math.ec.custom.sec.SecP192R1Curve [all...] |