HomeSort by relevance Sort by last modified time
    Searched refs:subject (Results 126 - 150 of 477) sorted by null

1 2 3 4 56 7 8 91011>>

  /system/connectivity/shill/ethernet/
ethernet.cc 240 string subject; local
242 if (WPASupplicant::ExtractRemoteCertification(properties, &subject, &depth)) {
245 subject, depth));
386 void Ethernet::CertificationTask(const string& subject, uint32_t depth) {
389 service_->AddEAPCertification(subject, depth);
ethernet.h 128 void CertificationTask(const std::string& subject, uint32_t depth);
  /external/conscrypt/src/test/java/org/conscrypt/
TrustedCertificateStoreTest.java 253 .subject(CA1.getSubjectX500Principal())
287 .subject("CN=certloop-ca1")
298 .subject("CN=certloop-ca2")
312 .subject("CN=certloop-ca1")
325 .subject("CN=certloop-ee")
343 .subject("CN=multiple-issuers-ca1")
355 .subject("CN=multiple-issuers-ca2")
367 .subject("CN=multiple-issuers-ca1")
382 .subject("CN=multiple-issuers-ee")
942 X500Principal subject = x.getSubjectX500Principal(); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Message.java 85 * @see UIProvider.MessageColumns#SUBJECT
87 public String subject; field in class:Message
259 TextUtils.equals(this.subject, o.subject) &&
272 dest.writeString(subject);
308 subject = in.readString();
370 subject = cursor.getString(UIProvider.MESSAGE_SUBJECT_COLUMN);
434 subject = mimeMessage.getSubject();
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
NotificationUtils.java 1249 final String subject = ConversationItemView.filterTag(context, conversation.subject); local
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/conversation/
ComposeMessageView.java 242 // typing a subject without a message.
286 // action (select SIM or edit subject), as opposed to "long press send button."
343 // returns true if it actually shows the subject editor and false if already showing
345 // show the subject editor
384 final String subject = mComposeSubjectText.getText().toString(); local
385 mBinding.getData().setMessageSubject(subject);
477 // which immediately reloads the text from the subject and message fields and replaces
480 final String subject = data.getMessageSubject(); local
485 mComposeSubjectText.setText(subject);
590 final String subject = mComposeSubjectText.getText().toString() local
632 final String subject = mComposeSubjectText.getText().toString(); local
    [all...]
  /external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/
X509CertSelectorTest.java 94 protected X500Principal subject = null; field in class:X509CertSelectorTest.TestCert
205 public void setSubject(X500Principal subject) {
206 this.subject = subject;
279 return subject;
283 return subject;
699 * setSubject(X500Principal subject) method testing.
736 assertEquals("The returned subject should be equal to specified",
738 assertFalse("The returned subject should differ",
758 "Any certificates should match in the case of null subject criteria."
1777 String subject = "O=Organization"; local
1929 String subject = "O=Organization"; local
2027 X500Principal subject = new X500Principal(variants[i][0]); local
2687 X500Principal subject = new X500Principal("O=Subject Org."); local
2752 X500Principal subject = new X500Principal("O=Subject Org."); local
2847 X500Principal subject = new X500Principal("O=Subject Org."); local
    [all...]
  /external/boringssl/src/crypto/x509v3/
v3_purp.c 500 /* Does subject name match issuer ? */
730 * subject name.
732 * 1. Check issuer_name(subject) == subject_name(issuer)
733 * 2. If akid(subject) exists check it matches issuer
739 int X509_check_issued(X509 *issuer, X509 *subject)
742 X509_get_issuer_name(subject)))
745 x509v3_cache_extensions(subject);
747 if(subject->akid)
749 int ret = X509_check_akid(issuer, subject->akid);
754 if(subject->ex_flags & EXFLAG_PROXY
    [all...]
  /external/v8/test/mjsunit/
string-split.js 156 // Check that the subject is converted to string before the separator.
158 var subject = { toString: function() { assertEquals(0, counter);
165 assertEquals(["a", "c"], String.prototype.split.call(subject, separator));
  /packages/apps/ContactsCommon/src/com/android/contacts/common/dialog/
CallSubjectDialog.java 61 * Implements a dialog which prompts for a call subject for an outgoing call. The dialog includes
116 * Handles changes to the text in the subject box. Ensures the character limit is updated.
157 * Handles starting a call with a call subject specified.
162 String subject = mCallSubjectView.getText().toString();
164 subject);
171 mSubjectHistory.add(subject);
178 * Handles auto-hiding the call history when user clicks in the call subject field to give it
192 * the activity, returning the subject to the caller and closing the activity with the
205 * Show the call subject dialog given a phone number to dial (e.g. from the dialpad).
224 * Creates a call subject dialog
    [all...]
  /cts/tests/tests/telephony/src/android/telephony/cts/
MmsTest.java 63 private static final String SUBJECT = "CTS MMS Test";
199 final byte[] pdu = buildPdu(context, selfNumber, SUBJECT, MESSAGE_BODY);
234 private byte[] buildPdu(Context context, String selfNumber, String subject, String text) {
245 // Subject
246 if (!TextUtils.isEmpty(subject)) {
247 req.setSubject(new EncodedStringValue(subject));
  /frameworks/base/keystore/java/android/security/keystore/
KeyGenParameterSpec.java 71 * support storing key pairs without a certificate. The subject, serial number, and validity dates
378 * Returns the subject distinguished name to be used on the X.509 certificate that will be put
    [all...]
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
ReverseBuilder.java 8 * particular file as subject to the "Classpath" exception as provided
149 * Match on issuer (subject of previous cert)
165 * If previous cert has a subject key identifier extension,
206 * Match on issuer (subject of previous cert)
216 * Match on target subject name (checks that current cert's
220 byte[] subject = targetCertConstraints.getSubjectAsBytes();
221 if (subject != null) {
222 sel.addPathToName(4, subject);
238 * If previous cert has a subject key identifier extension,
307 ("Invalid target subject distinguished name")
    [all...]
  /bionic/tools/bionicbb/
tasks.py 42 logging.fatal('No Gerrit info found: %s', msg.subject)
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 70 * arbitrarily and is subject to change.
429 private X500Principal subject; field in class:TestCertUtils.TestX509Certificate
434 this.subject = subj;
443 return subject;
448 * first are bytes of encoded form of Subject (as X500Principal),
453 byte[] asubj = subject.getEncoded();
  /external/boringssl/src/crypto/x509/
x509_set.c 108 return(X509_NAME_set(&x->cert_info->subject,name));
  /external/chromium-trace/catapult/dashboard/dashboard/
send_stoppage_alert_emails.py 91 subject=_Subject(sheriff_entity, stoppage_alerts),
107 """Returns the subject line for an email about stoppage alerts.
114 A string email subject line.
  /external/wpa_supplicant_8/src/tls/
x509v3.h 57 struct x509_name subject; member in struct:x509_certificate
  /hardware/bsp/intel/peripheral/libmraa/examples/javascript/
spi.js 12 * permit persons to whom the Software is furnished to do so, subject to
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 72 * arbitrarily and is subject to change.
436 private X500Principal subject; field in class:TestCertUtils.TestX509Certificate
441 this.subject = subj;
450 return subject;
455 * first are bytes of encoded form of Subject (as X500Principal),
461 byte[] asubj = subject.getEncoded();
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
InsertNewMessageAction.java 77 final String messageText, final String subject) {
79 subId, recipients, messageText, subject);
105 final String messageText, final String subject) {
113 actionParameters.putString(KEY_SUBJECT_TEXT, subject);
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
Message.java 51 public abstract void setSubject(String subject) throws MessagingException;
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationItemView.java 711 // Subject.
712 Utils.traceBeginSection("subject");
880 String subject = filterTag(getContext(), mHeader.conversation.subject); local
    [all...]
  /packages/services/Telephony/src/com/android/phone/common/mail/
Message.java 49 public abstract void setSubject(String subject) throws MessagingException;
  /external/autotest/site_utils/suite_scheduler/
suite_scheduler.py 116 def add_smtp_handler(self, subject, level=logging.ERROR):
120 @param subject: email subject.
134 subject,

Completed in 581 milliseconds

1 2 3 4 56 7 8 91011>>