HomeSort by relevance Sort by last modified time
    Searched full:content_info (Results 1 - 9 of 9) sorted by null

  /external/boringssl/src/crypto/x509/
pkcs7.c 40 CBS in, content_info, content_type, wrapped_signed_data, signed_data; local
55 if (!CBS_get_asn1(&in, &content_info, CBS_ASN1_SEQUENCE) ||
56 !CBS_get_asn1(&content_info, &content_type, CBS_ASN1_OBJECT)) {
66 if (!CBS_get_asn1(&content_info, &wrapped_signed_data,
274 content_info; local
286 !CBB_add_asn1(&seq, &content_info, CBS_ASN1_SEQUENCE) ||
287 !OBJ_nid2cbb(&content_info, NID_pkcs7_data) ||
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/generator/
CodeGenerator.java 26 import static com.android.notificationstudio.model.EditableItem.CONTENT_INFO;
65 if (CONTENT_INFO.hasValue())
66 sb.append(INDENT + ".setContentInfo(" + quote(CONTENT_INFO) + ")");
NotificationGenerator.java 26 import static com.android.notificationstudio.model.EditableItem.CONTENT_INFO;
69 if (CONTENT_INFO.hasValue())
70 builder.setContentInfo(CONTENT_INFO.getValueString());
  /sdk/apps/NotificationStudio/res/values/
strings.xml 29 <string name="content_info">Content Info</string>
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/model/
EditableItem.java 36 CONTENT_INFO(R.string.content_info, TYPE_TEXT, CATEGORY_MAIN),
  /external/boringssl/src/crypto/pkcs8/
pkcs8.c 670 static int PKCS12_handle_content_info(CBS *content_info, unsigned depth,
712 CBS content_info; local
713 if (!CBS_get_asn1(&in, &content_info, CBS_ASN1_SEQUENCE)) {
718 if (!PKCS12_handle_content_info(&content_info, depth + 1, ctx)) {
736 static int PKCS12_handle_content_info(CBS *content_info, unsigned depth,
741 if (!CBS_get_asn1(content_info, &content_type, CBS_ASN1_OBJECT) ||
742 !CBS_get_asn1(content_info, &wrapped_contents,
    [all...]
  /external/webrtc/talk/session/media/
channel.cc 762 const ContentInfo* content_info = GetFirstContent(local_desc); local
764 GetContentDescription(content_info);
765 if (content_desc && content_info && !content_info->rejected &&
776 const ContentInfo* content_info = GetFirstContent(remote_desc); local
778 GetContentDescription(content_info);
779 if (content_desc && content_info && !content_info->rejected &&
    [all...]
  /external/webrtc/talk/app/webrtc/
webrtcsdp.cc 251 static void BuildMediaDescription(const ContentInfo* content_info,
    [all...]
peerconnectioninterface_unittest.cc 291 bool GetFirstSsrc(const cricket::ContentInfo* content_info, int* ssrc) {
292 if (!content_info || !ssrc) {
297 content_info->description);
    [all...]

Completed in 1391 milliseconds