OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:keychain
(Results
26 - 40
of
40
) sorted by null
1
2
/external/chromium/chrome/browser/
keychain_mock_mac.h
15
// Mock
Keychain
wrapper for testing code that interacts with the OS
Keychain
.
21
// of MacKeychain doesn't apply to the actual
keychain
data, so all of the Mock
25
// Create a Mock
Keychain
capable of holding item_capacity
keychain
items.
45
// If there are unused slots in the Mock
Keychain
's capacity, the new item
48
virtual OSStatus AddInternetPassword(SecKeychainRef
keychain
,
71
virtual OSStatus AddGenericPassword(SecKeychainRef
keychain
,
103
// Adds a
keychain
item with the given info to the test set.
107
// interaction with the system
Keychain
. For mocking purposes we allow th
[
all
...]
keychain_mock_mac.cc
25
// Create the test
keychain
data storage.
276
SecKeychainRef
keychain
,
369
OSStatus MockKeychain::AddGenericPassword(SecKeychainRef
keychain
,
/external/chromium_org/crypto/
mock_apple_keychain.h
20
// Mock
Keychain
wrapper for testing code that interacts with the OS X
21
//
Keychain
. Implemented by storing SecKeychainAttributeList and
26
// of AppleKeychain doesn't apply to the actual
keychain
data, so all of the
47
SecKeychainRef
keychain
,
82
SecKeychainRef
keychain
,
119
// Adds a
keychain
item with the given info to the test set.
124
// interaction with the system
Keychain
. For mocking purposes we allow the
147
// Type of the map holding the mock
keychain
attributes.
152
// Returns true if the
keychain
already contains a password that matches the
166
// Initializes storage for
keychain
data at |key|
[
all
...]
mock_apple_keychain_mac.cc
370
// The
keychain
already has this item, since all fields other than the
378
SecKeychainRef
keychain
,
398
// If the account already exists in the
keychain
, we don't add it.
411
// Initialize
keychain
data storage at the target location.
/packages/apps/KeyChain/tests/
Android.mk
21
LOCAL_STATIC_JAVA_LIBRARIES := com.android.
keychain
.tests.support core-tests mockwebserver
/packages/apps/KeyChain/support/src/com/android/keychain/tests/support/
KeyChainServiceTestSupport.java
17
package com.android.
keychain
.tests.support;
23
import android.security.
KeyChain
;
72
KeyChain
.KeyChainConnection connection = null;
74
connection =
KeyChain
.bind(KeyChainServiceTestSupport.this);
/external/chromium/chrome/browser/password_manager/
password_store_mac.cc
27
// Utility class to handle the details of constructing and running a
keychain
31
explicit KeychainSearch(const MacKeychain&
keychain
);
44
// Fills |items| with all
Keychain
items that match the Init'd search.
54
KeychainSearch::KeychainSearch(const MacKeychain&
keychain
)
55
: keychain_(&
keychain
), search_ref_(NULL) {
152
LOG(ERROR) << "
Keychain
lookup failed with error " << result;
194
// Converts a
Keychain
time string to a Time object, returning true if
231
bool FillPasswordFormFromKeychainItem(const MacKeychain&
keychain
,
253
OSStatus result =
keychain
.ItemCopyAttributesAndData(keychain_item, &attrInfo,
262
LOG(ERROR) << "
Keychain
data load failed: " << result
[
all
...]
/development/samples/KeyChainDemo/src/com/example/android/keychain/
SecureWebServer.java
17
package com.example.android.
keychain
;
/packages/apps/KeyChain/tests/src/com/android/keychain/tests/
KeyChainServiceTest.java
17
package com.android.
keychain
.tests;
29
import com.android.
keychain
.tests.support.IKeyChainServiceTestSupport;
KeyChainTestActivity.java
17
package com.android.
keychain
.tests;
24
import android.security.
KeyChain
;
51
* Simple activity based test that exercises the
KeyChain
API
107
KeyChain
.getPrivateKey(null, null);
114
log("
KeyChain
failed as expected with null argument.");
118
KeyChain
.getPrivateKey(this, null);
125
log("
KeyChain
failed as expected with null argument.");
129
KeyChain
.getPrivateKey(null, "");
136
log("
KeyChain
failed as expected with null argument.");
140
KeyChain
.getPrivateKey(this, "")
[
all
...]
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/
nis.x
360
% int
keychain
; /* It's hash key (for pop) */
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
nis.x
360
% int
keychain
; /* It's hash key (for pop) */
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
nis.x
360
% int
keychain
; /* It's hash key (for pop) */
/packages/apps/KeyChain/src/com/android/keychain/
KeyChainService.java
17
package com.android.
keychain
;
33
import android.security.
KeyChain
;
46
private static final String TAG = "
KeyChain
";
313
Intent intent = new Intent(
KeyChain
.ACTION_STORAGE_CHANGED);
KeyChainActivity.java
17
package com.android.
keychain
;
31
import android.security.
KeyChain
;
57
private static final String TAG = "
KeyChain
";
92
mSender = getIntent().getParcelableExtra(
KeyChain
.EXTRA_SENDER);
183
String alias = getIntent().getStringExtra(
KeyChain
.EXTRA_ALIAS);
228
String host = getIntent().getStringExtra(
KeyChain
.EXTRA_HOST);
231
int port = getIntent().getIntExtra(
KeyChain
.EXTRA_PORT, -1);
382
getIntent().getIBinderExtra(
KeyChain
.EXTRA_RESPONSE));
400
KeyChain
.KeyChainConnection connection =
KeyChain
.bind(KeyChainActivity.this)
[
all
...]
Completed in 308 milliseconds
1
2