Searched refs:Key (Results 1 - 25 of 441) sorted by relevance

1234567891011>>

/external/openssh/
H A Dauthfile.h18 int key_save_private(Key *, const char *, const char *, const char *);
20 Key *key_load_cert(const char *);
21 Key *key_load_public(const char *, char **);
22 Key *key_load_public_type(int, const char *, char **);
23 Key *key_parse_private(Buffer *, const char *, const char *, char **);
24 Key *key_load_private(const char *, const char *, char **);
25 Key *key_load_private_cert(int, const char *, const char *, int *);
26 Key *key_load_private_type(int, const char *, const char *, char **, int *);
27 Key *key_load_private_pem(int, int, const char *, char **);
29 int key_in_file(Key *, cons
[all...]
H A Dkey.h36 typedef struct Key Key; typedef in typeref:struct:Key
73 Key *signature_key;
76 struct Key { struct
90 Key *key_new(int);
91 void key_add_private(Key *);
92 Key *key_new_private(int);
93 void key_free(Key *);
94 Key *key_demote(const Key *);
[all...]
H A Dssh-pkcs11.h19 int pkcs11_add_provider(char *, char *, Key ***);
H A Dauthfd.h76 Key *ssh_get_first_identity(AuthenticationConnection *, char **, int);
77 Key *ssh_get_next_identity(AuthenticationConnection *, char **, int);
78 int ssh_add_identity_constrained(AuthenticationConnection *, Key *,
80 int ssh_remove_identity(AuthenticationConnection *, Key *);
87 ssh_decrypt_challenge(AuthenticationConnection *, Key *, BIGNUM *, u_char[16],
91 ssh_agent_sign(AuthenticationConnection *, Key *, u_char **, u_int *, u_char *,
/external/chromium_org/net/http/
H A Dhttp_pipelined_host.cc9 HttpPipelinedHost::Key::Key(const HostPortPair& origin) function in class:net::HttpPipelinedHost::Key
13 bool HttpPipelinedHost::Key::operator<(const Key& rhs) const {
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
H A DKeyPair.idl34 readonly attribute Key publicKey;
35 readonly attribute Key privateKey;
H A DKeyPair.h43 class Key;
49 Key* publicKey() { return m_publicKey.get(); }
50 Key* privateKey() { return m_privateKey.get(); }
53 KeyPair(const PassRefPtr<Key>& publicKey, const PassRefPtr<Key>& privateKey);
55 RefPtr<Key> m_publicKey;
56 RefPtr<Key> m_privateKey;
H A DKey.h47 class Key : public ScriptWrappable, public RefCounted<Key> { class in namespace:WebCore
49 static PassRefPtr<Key> create(const blink::WebCryptoKey& key) { return adoptRef(new Key(key)); }
51 ~Key();
66 explicit Key(const blink::WebCryptoKey&);
H A DKeyPair.cpp34 #include "modules/crypto/Key.h"
43 return adoptRef(new KeyPair(Key::create(publicKey), Key::create(privateKey)));
46 KeyPair::KeyPair(const PassRefPtr<Key>& publicKey, const PassRefPtr<Key>& privateKey)
H A DSubtleCrypto.idl34 [RaisesException] Promise encrypt(Dictionary algorithm, Key key, ArrayBufferView data);
35 [RaisesException] Promise decrypt(Dictionary algorithm, Key key, ArrayBufferView data);
36 [RaisesException] Promise sign(Dictionary algorithm, Key key, ArrayBufferView data);
37 [RaisesException, ImplementedAs=verifySignature] Promise verify(Dictionary algorithm, Key key, ArrayBufferView signature, ArrayBufferView data);
42 [RaisesException] Promise exportKey(DOMString format, Key key);
44 [RaisesException] Promise wrapKey(DOMString format, Key key, Key wrappingKey, Dictionary wrapAlgorithm);
45 [RaisesException] Promise unwrapKey(DOMString format, ArrayBufferView wrappedKey, Key unwrappingKey, Dictionary unwrapAlgorithm, Dictionary? unwrappedKeyAlgorithm, boolean extractable, DOMString[] keyUsages);
/external/clang/test/Modules/Inputs/submodules/
H A Dhash_map.h1 template<typename Key, typename Data> class hash_map { };
/external/chromium_org/android_webview/browser/
H A Dgl_view_renderer_manager.h19 typedef ListType::iterator Key; typedef in class:android_webview::GLViewRendererManager
27 Key DidDrawGL(Key key, BrowserViewRenderer* view);
29 void NoLongerExpectsDrawGL(Key key);
33 Key NullKey();
/external/llvm/lib/Support/
H A DStringPool.cpp25 PooledStringPtr StringPool::intern(StringRef Key) { argument
26 table_t::iterator I = InternTable.find(Key);
30 entry_t *S = entry_t::Create(Key.begin(), Key.end());
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Dhash.h62 template <typename Key>
65 int operator()(const Key& key) {
70 inline bool operator()(const Key& a, const Key& b) const {
89 template <typename Key, typename Data,
90 typename HashFcn = hash<Key>,
92 class hash_map : public std::map<Key, Data, HashFcn> {
97 template <typename Key,
98 typename HashFcn = hash<Key>,
100 class hash_set : public std::set<Key, HashFc
[all...]
/external/protobuf/src/google/protobuf/stubs/
H A Dhash.h62 template <typename Key>
65 int operator()(const Key& key) {
70 inline bool operator()(const Key& a, const Key& b) const {
89 template <typename Key, typename Data,
90 typename HashFcn = hash<Key>,
92 class hash_map : public std::map<Key, Data, HashFcn> {
95 template <typename Key,
96 typename HashFcn = hash<Key>,
98 class hash_set : public std::set<Key, HashFc
[all...]
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dskiplist.h37 template<typename Key, class Comparator>
50 void Insert(const Key& key);
53 bool Contains(const Key& key) const;
67 const Key& key() const;
78 void Seek(const Key& target);
115 Node* NewNode(const Key& key, int height);
117 bool Equal(const Key& a, const Key& b) const { return (compare_(a, b) == 0); }
120 bool KeyIsAfterNode(const Key& key, Node* n) const;
127 Node* FindGreaterOrEqual(const Key
[all...]
/external/chromium/base/
H A Dglobal_descriptors_posix.h39 typedef uint32_t Key; typedef in class:base::GlobalDescriptors
40 typedef std::vector<std::pair<Key, int> > Mapping;
42 // Often we want a canonical descriptor for a given Key. In this case, we add
50 int Get(Key key) const;
53 int MaybeGet(Key key) const;
56 void Set(Key key, int fd);
/external/chromium_org/base/posix/
H A Dglobal_descriptors.h38 typedef uint32_t Key; typedef in class:base::GlobalDescriptors
39 typedef std::pair<Key, int> KeyFDPair;
42 // Often we want a canonical descriptor for a given Key. In this case, we add
50 int Get(Key key) const;
53 int MaybeGet(Key key) const;
56 void Set(Key key, int fd);
/external/chromium/net/base/
H A Dhost_cache_unittest.cc23 HostCache::Key Key(const std::string& hostname) { function in namespace:net::__anon2964
24 return HostCache::Key(hostname, ADDRESS_FAMILY_UNSPECIFIED, 0);
41 EXPECT_TRUE(cache.Lookup(Key("foobar.com"), base::TimeTicks()) == NULL);
42 cache.Set(Key("foobar.com"), OK, AddressList(), now);
43 entry1 = cache.Lookup(Key("foobar.com"), base::TimeTicks());
51 EXPECT_TRUE(cache.Lookup(Key("foobar2.com"), base::TimeTicks()) == NULL);
52 cache.Set(Key("foobar2.com"), OK, AddressList(), now);
53 entry2 = cache.Lookup(Key("foobar2.com"), base::TimeTicks());
61 EXPECT_EQ(entry1, cache.Lookup(Key("fooba
[all...]
/external/chromium_org/third_party/libaddressinput/chromium/cpp/include/libaddressinput/
H A Dcallback.h19 // const Key& key,
51 template <typename Key, typename Data>
57 const Key& key,
63 template <typename Observer, typename Key, typename Data>
64 class CallbackImpl : public Callback<Key, Data> {
66 typedef void (Observer::*ObserveEvent)(bool, const Key&, const Data&);
78 const Key& key,
92 template <typename Observer, typename Key, typename Data>
93 Callback<Key, Data>* BuildCallback( argument
95 void (Observer::*observe_event)(bool, const Key
[all...]
/external/llvm/include/llvm/MC/
H A DSubtargetFeature.h35 const char *Key; // K-V key string member in struct:llvm::SubtargetFeatureKV
42 return strcmp(Key, S.Key) < 0;
52 const char *Key; // K-V key string member in struct:llvm::SubtargetInfoKV
57 return strcmp(Key, S.Key) < 0;
/external/bison/src/
H A Dmuscle-tab.h38 #define MUSCLE_INSERT_BOOL(Key, Value) \
41 MUSCLE_INSERT_INT (Key, v); \
44 #define MUSCLE_INSERT_INT(Key, Value) \
48 muscle_insert (Key, obstack_finish (&muscle_obstack)); \
51 #define MUSCLE_INSERT_LONG_INT(Key, Value) \
55 muscle_insert (Key, obstack_finish (&muscle_obstack)); \
58 #define MUSCLE_INSERT_STRING_RAW(Key, Value) \
62 muscle_insert (Key, obstack_finish (&muscle_obstack)); \
65 #define MUSCLE_INSERT_STRING(Key, Value) \
69 muscle_insert (Key, obstack_finis
[all...]
/external/chromium_org/net/dns/
H A Dmdns_cache.h28 // Key type for the record map. It is a 3-tuple of type, name and optional
32 class Key { class in class:net::MDnsCache
34 Key(unsigned type, const std::string& name, const std::string& optional);
35 Key(const Key&);
36 Key& operator=(const Key&);
37 ~Key();
38 bool operator<(const Key& key) const;
39 bool operator==(const Key
[all...]
/external/llvm/include/llvm/ADT/
H A DStringSet.h30 bool insert(StringRef Key) { argument
35 assert(!Key.empty());
36 StringMapEntry<char> &Entry = this->GetOrCreateValue(Key);
/external/clang/lib/AST/
H A DMangleNumberingContext.cpp27 QualType Key = Context.getFunctionType(Context.VoidTy, Proto->getArgTypes(), local
29 Key = Context.getCanonicalType(Key);
30 return ++ManglingNumbers[Key->castAs<FunctionProtoType>()];

Completed in 992 milliseconds

1234567891011>>