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

1 2

  /external/wpa_supplicant_8/src/eap_server/
eap_sim_db.h 55 const char *permanent, char *pseudonym);
57 int eap_sim_db_add_reauth(struct eap_sim_db_data *data, const char *permanent,
60 const char *permanent,
69 char *permanent; /* Permanent username */ member in struct:eap_sim_reauth
eap_sim_db.c 32 char *permanent; /* permanent username */ member in struct:eap_sim_pseudonym
95 " permanent CHAR(21) PRIMARY KEY,"
116 " permanent CHAR(21) PRIMARY KEY,"
178 const char *permanent, char *pseudonym)
183 if (!valid_db_string(permanent) || !valid_db_string(pseudonym)) {
189 "(permanent, pseudonym) VALUES ('%s', '%s');",
190 permanent, pseudonym);
209 if (os_strcmp(col[i], "permanent") == 0 && argv[i]) {
228 "SELECT permanent FROM pseudonyms WHERE pseudonym='%s';"
    [all...]
eap_server_aka.c 53 char permanent[20]; /* Permanent username */ member in struct:eap_aka_data
112 os_strlcpy(data->permanent, data->reauth->permanent,
113 sizeof(data->permanent));
155 const char *permanent; local
158 permanent = eap_sim_db_get_permanent(
160 if (permanent == NULL) {
163 "identity - request permanent identity");
167 os_strlcpy(data->permanent, permanent
749 const char *permanent; local
    [all...]
eap_server_sim.c 40 char permanent[20]; /* Permanent username */ member in struct:eap_sim_data
470 os_strlcpy(data->permanent, data->reauth->permanent,
471 sizeof(data->permanent));
479 const char *permanent; local
482 permanent = eap_sim_db_get_permanent(
485 if (permanent == NULL) {
487 "identity - request permanent identity");
491 os_strlcpy(data->permanent, permanent
    [all...]
  /external/chromium_org/crypto/
ec_private_key.h 45 // The created key is permanent and is not exportable in plaintext form.
62 // This can return NULL if initialization fails. The created key is permanent
81 bool permanent,
116 // TODO(cmasone): consider replacing |permanent| and |sensitive| with a
118 static ECPrivateKey* CreateWithParams(bool permanent,
127 bool permanent,
rsa_private_key_nss.cc 55 false /* not permanent */,
63 false /* not permanent */,
71 true /* permanent */,
79 true /* permanent */,
204 bool permanent,
207 if (permanent) {
217 ScopedPK11Slot slot(permanent ? GetPrivateNSSKeySlot() :
229 permanent,
240 const std::vector<uint8>& input, bool permanent, bool sensitive) {
242 if (permanent) {
    [all...]
ec_private_key_nss.cc 91 return CreateWithParams(PR_FALSE /* not permanent */,
98 return CreateWithParams(PR_TRUE /* permanent */,
102 // create permanent keys.
117 PR_FALSE /* not permanent */,
131 PR_TRUE /* permanent */,
135 // create permanent keys.
147 bool permanent,
196 permanent,
278 ECPrivateKey* ECPrivateKey::CreateWithParams(bool permanent,
313 permanent,
    [all...]
rsa_private_key.h 184 // The created key is permanent and is not exportable in plaintext form.
190 // The created key is permanent and is not exportable in plaintext form.
235 // TODO(cmasone): consider replacing |permanent| and |sensitive| with a
237 // Note: |permanent| is only supported when USE_NSS is defined.
239 bool permanent,
244 // Note: |permanent| is only supported when USE_NSS is defined.
247 bool permanent,
  /external/chromium_org/crypto/third_party/nss/
chromium-nss.h 67 PRBool permanent,
pk11akey.cc 54 PRBool permanent,
84 public_value, permanent, sensitive, CKK_EC,
  /frameworks/base/core/java/android/net/http/
LoggingEventHandler.java 53 public void locationChanged(String newLocation, boolean permanent) {
56 " permanent " + permanent);
  /external/chromium_org/chrome/common/extensions/docs/server2/
path_canonicalizer_test.py 78 self.assertFalse(result.permanent)
83 self.assertTrue(result.permanent)
render_servlet.py 50 permanent=canonical_result.permanent)
render_servlet_test.py 22 Response.Redirect('/extensions/storage.html', permanent=False),
28 Response.Redirect('/extensions/storage.html', permanent=True),
patch_servlet.py 104 redirect_url, permanent = response.GetRedirect()
107 permanent)
servlet.py 67 def Redirect(url, permanent=False):
70 status = 301 if permanent else 302
path_canonicalizer.py 36 permanent canonicalisation (e.g. when we redirect from a channel to a
41 def __init__(self, path, permanent):
43 self.permanent = permanent
53 # Redirect now so that we can set the permanent-redirect bit. Channel
54 # redirects are the only things that should be permanent redirects;
appengine_wrappers.py 200 def redirect(self, path, permanent=False):
201 self.response.status = 301 if permanent else 302
  /external/chromium/crypto/
rsa_private_key_nss.cc 54 PR_FALSE /* not permanent */,
61 PR_TRUE /* permanent */,
69 PR_FALSE /* not permanent */,
77 PR_TRUE /* permanent */,
188 bool permanent,
202 &result->public_key_, permanent, sensitive, NULL);
212 const std::vector<uint8>& input, bool permanent, bool sensitive) {
232 slot, &der_private_key_info, NULL, NULL, permanent, sensitive,
rsa_private_key.h 181 // The created key is permanent and is not exportable in plaintext form.
195 // The created key is permanent and is not exportable in plaintext form.
242 // TODO(cmasone): consider replacing |permanent| and |sensitive| with a
245 bool permanent,
251 const std::vector<uint8>& input, bool permanent, bool sensitive);
  /external/valgrind/main/VEX/priv/
main_util.c 65 static HChar permanent[N_PERMANENT_BYTES] __attribute__((aligned(8))); variable
66 static HChar* permanent_first = &permanent[0];
67 static HChar* permanent_curr = &permanent[0];
68 static HChar* permanent_last = &permanent[N_PERMANENT_BYTES-1];
76 vassert(permanent_first == &permanent[0]);
77 vassert(permanent_last == &permanent[N_PERMANENT_BYTES-1]);
163 if (private_LibVEX_alloc_first == &permanent[0]) pool = "PERM";
172 "Increase N_{TEMPORARY,PERMANENT}_BYTES and recompile.");
  /frameworks/base/tests/CoreTests/android/core/
TestEventHandler.java 324 * @param permanent Indicator of whether this is a permanent change
326 public void locationChanged(String newLocation, boolean permanent) {
329 newLocation + " permanent " + permanent);
350 if (((expectPermanent == 0) && !permanent) ||
351 ((expectPermanent == 1) && permanent)){
354 expectDetails.append("Location permanent expected:"+
355 expectPermanent+" got"+permanent);
667 public void expectLocationChanged(String newLocation, boolean permanent) {
    [all...]
  /external/chromium_org/sandbox/win/src/
process_mitigations_test.cc 24 PBOOL permanent);
40 return policy.Enable && policy.Permanent;
  /external/libselinux/include/selinux/
selinux.h 211 SELboolean * boollist, int permanent);
  /external/libselinux/src/
booleans.c 246 int permanent __attribute__((unused)))

Completed in 513 milliseconds

1 2