HomeSort by relevance Sort by last modified time
    Searched refs:Key (Results 1 - 25 of 1007) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/openssh/
authfile.h 18 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 *, const char *, int)
    [all...]
key.h 1 /* $OpenBSD: key.h,v 1.33 2010/10/28 11:22:09 djm Exp $ */
36 typedef struct Key Key;
59 /* key is stored in external hardware */
73 Key *signature_key;
76 struct Key {
90 Key *key_new(int);
91 void key_add_private(Key *);
92 Key *key_new_private(int);
93 void key_free(Key *);
    [all...]
ssh-pkcs11.h 19 int pkcs11_add_provider(char *, char *, Key ***);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/
compare.pass.cpp 12 // template <class Key, class T, class Compare = less<Key>,
13 // class Allocator = allocator<pair<const Key, T>>>
21 struct Key {
22 template <typename T> Key(const T&) {}
23 bool operator< (const Key&) const { return false; }
29 std::map<Key, int>::iterator it = std::map<Key, int>().find(Key(0));
30 std::pair<std::map<Key, int>::iterator, bool> result
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/
CameraCharacteristics.java 38 private List<Key<?>> mAvailableRequestKeys;
39 private List<Key<?>> mAvailableResultKeys;
50 public <T> T get(Key<T> key) {
51 return mProperties.get(key);
61 * <p>Each key is only listed once in the list. The order of the keys is undefined.</p>
68 public List<Key<?>> getAvailableCaptureRequestKeys() {
82 * <p>Each key is only listed once in the list. The order of the keys is undefined.</p>
89 public List<Key<?>> getAvailableCaptureResultKeys() {
102 * <p>Each key is only listed once in the list. The order of the keys is undefined.</p
    [all...]
CaptureResult.java 62 public <T> T get(Key<T> key) {
63 return mResults.get(key);
122 * The key entries below this point are generated from metadata
143 public static final Key<Rational[]> COLOR_CORRECTION_TRANSFORM =
144 new Key<Rational[]>("android.colorCorrection.transform", Rational[].class);
169 public static final Key<float[]> COLOR_CORRECTION_GAINS =
170 new Key<float[]>("android.colorCorrection.gains", float[].class);
186 public static final Key<Integer> CONTROL_AE_PRECAPTURE_ID =
187 new Key<Integer>("android.control.aePrecaptureId", int.class)
    [all...]
CaptureRequest.java 100 public <T> T get(Key<T> key) {
101 return mSettings.get(key);
124 * <p>A request is considered equal to another is if it's set of key/values is equal, it's
259 * @param key The metadata field to write.
261 * type to the key.
263 public <T> void set(Key<T> key, T value) {
264 mRequest.mSettings.set(key, value);
271 * @throws IllegalArgumentException if the key was not vali
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/
compare.pass.cpp 12 // template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>,
13 // class Alloc = allocator<pair<const Key, T>>>
21 struct Key {
22 template <typename T> Key(const T&) {}
23 bool operator== (const Key&) const { return true; }
29 struct hash<Key>
31 size_t operator()(Key const &) const {return 0;}
38 std::unordered_map<Key, int>::iterator it
    [all...]
  /external/chromium_org/net/http/
http_pipelined_host.cc 9 HttpPipelinedHost::Key::Key(const HostPortPair& origin)
13 bool HttpPipelinedHost::Key::operator<(const Key& rhs) const {
  /libcore/luni/src/main/java/javax/crypto/
SecretKey.java 20 import java.security.Key;
23 * A cryptographic secret (symmetric) key.
30 * from {@link java.lang.Object} so comparison is done using the actual key data
33 public interface SecretKey extends Key {
  /external/chromium_org/android_webview/browser/
gl_view_renderer_manager.h 19 typedef ListType::iterator Key;
24 // If |key| is NullKey(), then |view| is inserted at the front and a new key
25 // is returned. Otherwise |key| must point to |view| which is moved to the
27 Key DidDrawGL(Key key, BrowserViewRenderer* view);
29 void NoLongerExpectsDrawGL(Key key);
33 Key NullKey()
    [all...]
  /external/clang/test/Modules/Inputs/submodules/
hash_map.h 1 template<typename Key, typename Data> class hash_map { };
  /libcore/luni/src/main/java/java/security/
PrivateKey.java 25 public interface PrivateKey extends Key {
PublicKey.java 25 public interface PublicKey extends Key {
  /external/chromium/base/
global_descriptors_posix.h 34 // It maps from an abstract key to a descriptor. If independent modules each
39 typedef uint32_t Key;
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
43 // the following constant to the key value:
49 // Get a descriptor given a key. It is a fatal error if the key is not known.
50 int Get(Key key) const;
52 // Get a descriptor give a key. Returns -1 on error
    [all...]
  /external/chromium_org/base/posix/
global_descriptors.h 33 // It maps from an abstract key to a descriptor. If independent modules each
38 typedef uint32_t Key;
39 typedef std::pair<Key, int> KeyFDPair;
42 // Often we want a canonical descriptor for a given Key. In this case, we add
43 // the following constant to the key value:
49 // Get a descriptor given a key. It is a fatal error if the key is not known.
50 int Get(Key key) const;
52 // Get a descriptor give a key. Returns -1 on error
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
Key.h 45 class Key : public ScriptWrappable, public RefCounted<Key> {
47 static PassRefPtr<Key> create(const WebKit::WebCryptoKey& key) { return adoptRef(new Key(key)); }
49 ~Key();
56 const WebKit::WebCryptoKey& key() const { return m_key; } function in class:WebCore::Key
65 explicit Key(const WebKit::WebCryptoKey&);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/container/
container_fwd.hpp 76 template <class Key
77 ,class Compare = std::less<Key>
78 ,class Allocator = std::allocator<Key> >
82 template <class Key
83 ,class Compare = std::less<Key>
84 ,class Allocator = std::allocator<Key> >
88 template <class Key
90 ,class Compare = std::less<Key>
91 ,class Allocator = std::allocator<std::pair<const Key, T> > >
95 template <class Key
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeysCache.java 19 import com.android.inputmethod.keyboard.Key;
25 private final HashMap<Key, Key> mMap = CollectionUtils.newHashMap();
31 public Key get(final Key key) {
32 final Key existingKey = mMap.get(key);
34 // Reuse the existing element that equals to "key" without adding "key" to the map
    [all...]
  /external/llvm/lib/Support/
StringPool.cpp 25 PooledStringPtr StringPool::intern(StringRef Key) {
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/
hash.h 62 template <typename Key>
65 int operator()(const Key& key) {
70 inline bool operator()(const Key& a, const Key& b) const {
79 int operator()(const char* key) {
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,
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
hash.h 62 template <typename Key>
65 int operator()(const Key& key) {
70 inline bool operator()(const Key& a, const Key& b) const {
79 int operator()(const char* key) {
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,
    [all...]
  /external/chromium_org/net/dns/
mdns_cache.h 28 // Key type for the record map. It is a 3-tuple of type, name and optional
32 class Key {
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
    [all...]
  /external/llvm/include/llvm/ADT/
StringSet.h 27 /// insert - Insert the specified key into the set. If the key already
30 bool insert(StringRef Key) {
31 // Get or create the map entry for the key; if it doesn't exist the value
35 assert(!Key.empty());
36 StringMapEntry<char> &Entry = this->GetOrCreateValue(Key);
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewIconCache.java 34 public static class Key {
43 public Key(ApplicationInfo info) {
47 public Key(ResolveInfo info) {
53 public Key(AppWidgetProviderInfo info) {
67 if (o instanceof Key) {
68 Key k = (Key) o;
79 private final HashMap<Key, Bitmap> mIconOutlineCache = new HashMap<Key, Bitmap>();
82 for (Key key : mIconOutlineCache.keySet())
    [all...]

Completed in 547 milliseconds

1 2 3 4 5 6 7 8 91011>>