/packages/apps/UnifiedEmail/src/org/apache/commons/io/ |
IOCase.java | 25 * Windows is case-insensitive, Unix is case-sensitive.
41 * The constant for case sensitive regardless of operating system.
43 public static final IOCase SENSITIVE = new IOCase("Sensitive", true);
52 * Windows is case-insensitive when comparing filenames, Unix is case-sensitive.
66 private final transient boolean sensitive;
field in class:IOCase 77 if (IOCase.SENSITIVE.name.equals(name)){
78 return IOCase.SENSITIVE;
94 * @param sensitive the sensitivity
96 private IOCase(String name, boolean sensitive) {
[all...] |
/external/chromium_org/crypto/ |
ec_private_key.h | 86 bool sensitive, 121 // TODO(cmasone): consider replacing |permanent| and |sensitive| with a 125 bool sensitive); 135 bool sensitive);
|
ec_private_key_nss.cc | 96 false /* not sensitive */); 103 slot, true /* permanent */, true /* sensitive */); 121 false /* not sensitive */); 137 true /* sensitive */); 149 bool sensitive, 197 sensitive, 280 bool sensitive) { 312 sensitive, 329 bool sensitive) { 351 sensitive, [all...] |
rsa_private_key_nss.cc | 60 false /* not sensitive */); 73 false /* not sensitive */); 83 true /* sensitive */); 93 true /* sensitive */); 219 bool sensitive) { 233 sensitive, 246 bool sensitive) { 260 slot, &der_private_key_info, NULL, NULL, permanent, sensitive,
|
rsa_private_key.h | 239 // TODO(cmasone): consider replacing |permanent| and |sensitive| with a 245 bool sensitive); 254 bool sensitive);
|
/external/chromium_org/crypto/third_party/nss/ |
chromium-nss.h | 68 PRBool sensitive,
|
pk11akey.cc | 55 PRBool sensitive, 84 public_value, permanent, sensitive, CKK_EC,
|
/external/chromium/third_party/libjingle/source/talk/base/ |
httpcommon.cc | 774 // TODO: convert sensitive to a secure buffer that gets securely deleted 777 char * sensitive = new char[len]; local 778 size_t pos = strcpyn(sensitive, len, username.data(), username.size()); 779 pos += strcpyn(sensitive + pos, len - pos, ":"); 780 password.CopyTo(sensitive + pos, true); 784 // TODO: create a sensitive-source version of Base64::encode 785 response.append(Base64::Encode(sensitive)); 786 memset(sensitive, 0, len); 787 delete [] sensitive; 818 // TODO: convert sensitive to be secure buffe 821 char * sensitive = new char[len]; \/\/ A1 local 961 char * sensitive = new char[len]; local [all...] |
socketadapters.cc | 675 char * sensitive = new char[len]; 676 pass_.CopyTo(sensitive, true); 677 request.WriteString(sensitive); // Password 678 memset(sensitive, 0, len); 679 delete [] sensitive;
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
httpcommon.cc | 781 // TODO: convert sensitive to a secure buffer that gets securely deleted 784 char * sensitive = new char[len]; local 785 size_t pos = strcpyn(sensitive, len, username.data(), username.size()); 786 pos += strcpyn(sensitive + pos, len - pos, ":"); 787 password.CopyTo(sensitive + pos, true); 791 // TODO: create a sensitive-source version of Base64::encode 792 response.append(Base64::Encode(sensitive)); 793 memset(sensitive, 0, len); 794 delete [] sensitive; 825 // TODO: convert sensitive to be secure buffe 828 char * sensitive = new char[len]; \/\/ A1 local 969 char * sensitive = new char[len]; local [all...] |
socketadapters.cc | 675 char * sensitive = new char[len]; 676 pass_.CopyTo(sensitive, true); 677 request.WriteString(sensitive); // Password 678 memset(sensitive, 0, len); 679 delete [] sensitive;
|
/packages/apps/Email/src/com/android/email/mail/store/ |
ImapConnection.java | 236 * @param sensitive If true, the command will not be logged 239 String sendCommand(String command, boolean sensitive) 244 mTransport.writeLine(commandToSend, sensitive ? IMAP_REDACTED_LOG : null); 245 mDiscourse.addSentCommand(sensitive ? IMAP_REDACTED_LOG : commandToSend); 258 String sendComplexCommand(List<String> commands, boolean sensitive) throws MessagingException, 278 mDiscourse.addSentCommand(sensitive ? IMAP_REDACTED_LOG : commandToSend); 316 * @param sensitive whether the command should be redacted in logs (used for login) 321 List<ImapResponse> executeSimpleCommand(String command, boolean sensitive) 323 sendCommand(command, sensitive); 332 * @param sensitive whether the command should be redacted in logs (used for login [all...] |
/external/chromium/crypto/ |
rsa_private_key_nss.cc | 55 PR_FALSE /* not sensitive */); 62 PR_TRUE /* sensitive */); 70 PR_FALSE /* not sensitive */); 78 PR_TRUE /* sensitive */); 189 bool sensitive) { 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 | 242 // TODO(cmasone): consider replacing |permanent| and |sensitive| with a 246 bool sensitive); 251 const std::vector<uint8>& input, bool permanent, bool sensitive);
|
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
candidate.h | 176 std::string ToStringInternal(bool sensitive) const { 178 std::string address = sensitive ? address_.ToSensitiveString() :
|
/external/chromium_org/ui/keyboard/resources/ |
api_adapter.js | 7 * @param {string} id is a case-sensitive string representing the unique ID of
|
/external/openssh/ |
sshconnect1.c | 673 Sensitive *sensitive) 705 for (i = 0; i < sensitive->nkeys; i++) { 706 if (sensitive->keys[i] != NULL && 707 sensitive->keys[i]->type == KEY_RSA1 && 709 sensitive->keys[i]))
|
sshconnect2.c | 266 Sensitive *sensitive; member in struct:Authctxt 366 Sensitive *sensitive) 406 authctxt.sensitive = sensitive; 1654 Sensitive *sensitive = authctxt->sensitive; local [all...] |
sshconnect.c | [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
symrec.h | 72 /** Set the symbol table to be case sensitive or not. 75 * \param sensitive whether the symbol table should be case sensitive. 78 void yasm_symtab_set_case_sensitive(yasm_symtab *symtab, int sensitive);
|
symrec.c | 144 yasm_symtab_set_case_sensitive(yasm_symtab *symtab, int sensitive) 146 symtab->case_sensitive = sensitive;
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
BaseRecognizer.as | 405 * (context-sensitive or otherwise). We need the combined set of 406 * all context-sensitive FOLLOW sets--the set of all tokens that 410 * sync to context-sensitive FOLLOWs for a, b, and c: {']','^'}. 448 /** Compute the context-sensitive FOLLOW set for current rule. 475 * The FOLLOW sets are all inclusive whereas context-sensitive
|
/external/chromium_org/third_party/icu/source/test/perf/collationperf/ |
CollPerf.pl | 213 the hardware and compiler. The strcoll operation is particularly sensitive; we
|
/external/icu4c/test/perf/collationperf/ |
CollPerf.pl | 213 the hardware and compiler. The strcoll operation is particularly sensitive; we
|
/external/chromium/chrome/browser/ui/gtk/ |
task_manager_gtk.cc | 469 // The response button should not be sensitive when the dialog is first opened 956 bool sensitive = (paths != NULL) && !selection_contains_browser_process; local 958 kTaskManagerResponseKill, sensitive); local [all...] |