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

1 2

  /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 91 false /* not sensitive */);
104 false /* not sensitive */);
114 true /* sensitive */);
124 true /* sensitive */);
248 bool sensitive) {
262 sensitive,
275 bool sensitive) {
289 slot, &der_private_key_info, NULL, NULL, permanent, sensitive,
rsa_private_key.h 249 // TODO(cmasone): consider replacing |permanent| and |sensitive| with a
255 bool sensitive);
264 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,
  /packages/apps/Email/src/com/android/email/mail/store/
ImapConnection.java 271 * @param sensitive If true, the command will not be logged
274 String sendCommand(String command, boolean sensitive)
276 LogUtils.d(Logging.LOG_TAG, "sendCommand %s", (sensitive ? IMAP_REDACTED_LOG : command));
278 return sendCommandInternal(command, sensitive);
281 String sendCommandInternal(String command, boolean sensitive)
288 mTransport.writeLine(commandToSend, sensitive ? IMAP_REDACTED_LOG : null);
289 mDiscourse.addSentCommand(sensitive ? IMAP_REDACTED_LOG : commandToSend);
301 String sendComplexCommand(List<String> commands, boolean sensitive) throws MessagingException,
321 mDiscourse.addSentCommand(sensitive ? IMAP_REDACTED_LOG : commandToSend);
366 * @param sensitive whether the command should be redacted in logs (used for login
    [all...]
  /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;
  /external/chromium_org/third_party/webrtc/base/
httpcommon.cc 764 // TODO: convert sensitive to a secure buffer that gets securely deleted
767 char * sensitive = new char[len]; local
768 size_t pos = strcpyn(sensitive, len, username.data(), username.size());
769 pos += strcpyn(sensitive + pos, len - pos, ":");
770 password.CopyTo(sensitive + pos, true);
774 // TODO: create a sensitive-source version of Base64::encode
775 response.append(Base64::Encode(sensitive));
776 memset(sensitive, 0, len);
777 delete [] sensitive;
808 // TODO: convert sensitive to be secure buffe
811 char * sensitive = new char[len]; \/\/ A1 local
952 char * sensitive = new char[len]; local
    [all...]
socketadapters.cc 658 char * sensitive = new char[len];
659 pass_.CopyTo(sensitive, true);
660 request.WriteString(sensitive); // Password
661 memset(sensitive, 0, len);
662 delete [] sensitive;
  /packages/apps/Settings/src/com/android/settings/notification/
AppNotificationSettings.java 53 private static final String KEY_SENSITIVE = "sensitive";
162 mSensitive.setChecked(mAppRow.sensitive);
185 final boolean sensitive = (Boolean) newValue;
186 return mBackend.setSensitive(pkg, uid, sensitive);
NotificationAppList.java 311 if (!row.priority && !row.sensitive) {
316 if (row.priority != row.sensitive) {
359 public boolean sensitive; field in class:NotificationAppList.AppRow
386 row.sensitive = backend.getSensitive(row.pkg, row.uid);
582 public boolean setSensitive(String pkg, int uid, boolean sensitive) {
585 sensitive ? Notification.VISIBILITY_PRIVATE
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
candidate.h 195 std::string ToStringInternal(bool sensitive) const {
197 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/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;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ExpandableNotificationRow.java 365 public void setSensitive(boolean sensitive) {
366 mSensitive = 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/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/
search_widget.js 318 * Toggles whether or not searches are case sensitive.
327 cvox.ChromeVox.tts.speak('Case sensitive.', 0, null);
  /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/icu/icu4c/source/test/perf/collationperf/
CollPerf.pl 213 the hardware and compiler. The strcoll operation is particularly sensitive; we
  /external/chromium_org/chrome/browser/ui/webui/options/
certificate_manager_browsertest.js 241 // Context sensitive buttons should be disabled.
  /external/chromium_org/v8/test/mjsunit/
debug-breakpoints.js 209 // (This may be sensitive to compiler break position map generation).

Completed in 525 milliseconds

1 2