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

1 2 3 4 5 6

  /device/linaro/bootloader/arm-trusted-firmware/plat/xilinx/zynqmp/pm_service/
pm_api_sys.h 16 enum pm_ret_status pm_req_suspend(enum pm_node_id nid,
21 enum pm_ret_status pm_self_suspend(enum pm_node_id nid,
26 enum pm_ret_status pm_force_powerdown(enum pm_node_id nid,
31 enum pm_ret_status pm_req_wakeup(enum pm_node_id nid,
48 enum pm_ret_status pm_req_node(enum pm_node_id nid,
52 enum pm_ret_status pm_release_node(enum pm_node_id nid);
54 enum pm_ret_status pm_set_requirement(enum pm_node_id nid,
58 enum pm_ret_status pm_set_max_latency(enum pm_node_id nid,
65 enum pm_ret_status pm_register_notifier(enum pm_node_id nid,
69 enum pm_ret_status pm_get_op_characteristic(enum pm_node_id nid,
    [all...]
pm_common.h 48 const struct pm_proc *pm_get_proc_by_node(enum pm_node_id nid);
pm_api_sys.c 53 * @nid Node id of the processor or subsystem
63 enum pm_ret_status pm_self_suspend(enum pm_node_id nid,
234 * @nid Node id of the slave
241 enum pm_ret_status pm_req_node(enum pm_node_id nid,
248 PM_PACK_PAYLOAD5(payload, PM_REQ_NODE, nid, capabilities, qos, ack);
258 * @nid Node id of the slave
267 enum pm_ret_status pm_set_requirement(enum pm_node_id nid,
274 PM_PACK_PAYLOAD5(payload, PM_SET_REQUIREMENT, nid, capabilities, qos,
285 * @nid Node id of the slave
289 enum pm_ret_status pm_release_node(enum pm_node_id nid)
    [all...]
  /external/boringssl/src/crypto/x509/
x509_ext.c 70 int X509_CRL_get_ext_by_NID(X509_CRL *x, int nid, int lastpos)
72 return (X509v3_get_ext_by_NID(x->crl->extensions, nid, lastpos));
95 void *X509_CRL_get_ext_d2i(X509_CRL *x, int nid, int *crit, int *idx)
97 return X509V3_get_d2i(x->crl->extensions, nid, crit, idx);
100 int X509_CRL_add1_ext_i2d(X509_CRL *x, int nid, void *value, int crit,
103 return X509V3_add1_i2d(&x->crl->extensions, nid, value, crit, flags);
116 int X509_get_ext_by_NID(X509 *x, int nid, int lastpos)
118 return (X509v3_get_ext_by_NID(x->cert_info->extensions, nid, lastpos));
147 void *X509_get_ext_d2i(X509 *x, int nid, int *crit, int *idx)
149 return X509V3_get_d2i(x->cert_info->extensions, nid, crit, idx)
    [all...]
x509_req.c 163 int i, nid; local
165 nid = ext_nids[i];
166 if (nid == NID_undef)
168 else if (req_nid == nid)
218 int nid)
239 attr->object = (ASN1_OBJECT *)OBJ_nid2obj(nid);
266 int X509_REQ_get_attr_by_NID(const X509_REQ *req, int nid, int lastpos)
268 return X509at_get_attr_by_NID(req->req_info->attributes, nid, lastpos);
305 int nid, int type,
308 if (X509at_add1_attr_by_NID(&req->req_info->attributes, nid,
    [all...]
x_attrib.c 86 X509_ATTRIBUTE *X509_ATTRIBUTE_create(int nid, int atrtype, void *value)
94 ret->object = (ASN1_OBJECT *)OBJ_nid2obj(nid);
  /external/f2fs-tools/fsck/
node.h 26 return ((node)->footer.nid == (node)->footer.ino);
49 static inline void set_nid(struct f2fs_node * rn, int off, nid_t nid, int i)
52 rn->i.i_nid[off - NODE_DIR1_BLOCK] = cpu_to_le32(nid);
54 rn->in.nid[off] = cpu_to_le32(nid);
62 return le32_to_cpu(rn->in.nid[off]);
72 struct f2fs_node *iblk, struct f2fs_node *nblk, nid_t nid)
77 dn->nid = nid;
dump.c 39 u32 nr_nat_blks, nid; local
72 nid = block_off * NAT_ENTRY_PER_BLOCK;
76 ni.nid = nid + i;
78 if(nid + i == 0 || nid + i == 1 || nid + i == 2 )
80 if (lookup_nat_in_journal(sbi, nid + i,
88 "nid:%5u\tino:%5u\toffset:%5u"
90 ni.nid, ni.ino
585 nid_t nid; local
    [all...]
fsck.c 61 u32 nid, u32 link_cnt)
69 node->nid = nid;
82 while (tmp && (nid < tmp->nid)) {
83 ASSERT(tmp->nid != nid);
97 DBG(2, "ino[0x%x] has hard links [0x%x]\n", nid, link_cnt);
101 static int find_and_dec_hard_link_list(struct f2fs_sb_info *sbi, u32 nid)
111 while (node && (nid < node->nid))
211 u32 nid = le32_to_cpu(sum->nid); local
741 u32 nid = le32_to_cpu(node_blk->i.i_nid[idx]); local
1023 nid_t nid = le32_to_cpu(node_blk->footer.nid); local
1063 nid_t nid = le32_to_cpu(node_blk->footer.nid); local
    [all...]
node.c 19 void f2fs_alloc_nid(struct f2fs_sb_info *sbi, nid_t *nid, int inode)
31 *nid = i;
74 node_blk->footer.nid = cpu_to_le32(dn->nid);
87 get_node_info(sbi, dn->nid, &ni);
88 set_summary(&sum, dn->nid, 0, ni.version);
93 dn->nid, blkaddr);
196 nids[0] = dn->nid;
210 dn->nid = nids[i];
246 dn->nid = nids[level]
    [all...]
  /external/boringssl/src/crypto/obj/
obj.c 132 r->nid = o->nid;
195 unsigned nid = *((const unsigned*) element); local
197 const ASN1_OBJECT *b = &kObjects[nid];
214 if (obj->nid != 0) {
215 return obj->nid;
225 return match->nid;
236 return kObjects[*nid_ptr].nid;
257 unsigned nid = *((unsigned*) element); local
259 return strcmp(name, kObjects[nid].sn)
293 unsigned nid = *((unsigned*) element); local
326 int nid; local
415 int nid = OBJ_sn2nid(s); local
446 int nid = OBJ_obj2nid(obj); local
    [all...]
  /external/boringssl/src/include/openssl/
obj.h 63 #include <openssl/nid.h>
81 // The nid values should not be used outside of a single process: they are not
103 // OBJ_obj2nid returns the nid corresponding to |obj|, or |NID_undef| if no
107 // OBJ_cbs2nid returns the nid corresponding to the DER data in |cbs|, or
111 // OBJ_sn2nid returns the nid corresponding to |short_name|, or |NID_undef| if
115 // OBJ_ln2nid returns the nid corresponding to |long_name|, or |NID_undef| if
119 // OBJ_txt2nid returns the nid corresponding to |s|, which may be a short name,
121 // returns the nid or NID_undef if unknown.
127 // OBJ_nid2obj returns the ASN1_OBJECT corresponding to |nid|, or NULL if |nid|
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/tools/cert_create/include/
ext.h 71 X509_EXTENSION *ext_new_hash(int nid, int crit, const EVP_MD *md,
73 X509_EXTENSION *ext_new_nvcounter(int nid, int crit, int value);
74 X509_EXTENSION *ext_new_key(int nid, int crit, EVP_PKEY *k);
cert.h 50 int cert_add_ext(X509 *issuer, X509 *subject, int nid, char *value);
  /external/boringssl/src/crypto/cipher_extra/
cipher_extra.c 64 #include <openssl/nid.h>
70 const EVP_CIPHER *EVP_get_cipherbynid(int nid) {
71 switch (nid) {
e_null.c 61 #include <openssl/nid.h>
  /external/boringssl/src/crypto/asn1/
a_strnid.c 130 int inform, int nid)
138 tbl = ASN1_STRING_TABLE_get(nid);
170 /* This table must be kept in NID order */
200 return (*a)->nid - (*b)->nid;
207 return a->nid - b->nid;
210 ASN1_STRING_TABLE *ASN1_STRING_TABLE_get(int nid)
216 fnd.nid = nid;
    [all...]
  /external/boringssl/src/fipstools/
cavp_ecdsa2_pkv_test.cc 24 #include <openssl/nid.h>
31 int nid = GetECGroupNIDFromInstruction(t); local
32 if (nid == NID_undef) {
35 bssl::UniquePtr<EC_KEY> key(EC_KEY_new_by_curve_name(nid));
cavp_ecdsa2_keypair_test.cc 26 #include <openssl/nid.h>
35 int nid = GetECGroupNIDFromInstruction(t, &group_str); local
36 if (nid == NID_undef ||
49 bssl::UniquePtr<EC_KEY> key(EC_KEY_new_by_curve_name(nid));
cavp_ecdsa2_sigver_test.cc 26 #include <openssl/nid.h>
33 int nid = GetECGroupNIDFromInstruction(t); local
35 if (nid == NID_undef || md == nullptr) {
39 bssl::UniquePtr<EC_KEY> key(EC_KEY_new_by_curve_name(nid));
cavp_kas_test.cc 27 #include <openssl/nid.h>
37 int nid = NID_undef; local
41 nid = NID_secp224r1;
44 nid = NID_X9_62_prime256v1;
47 nid = NID_secp384r1;
50 nid = NID_secp521r1;
62 bssl::UniquePtr<EC_KEY> ec_key(EC_KEY_new_by_curve_name(nid));
  /external/boringssl/src/crypto/pem/
pem_pk8.c 69 int nid, const EVP_CIPHER *enc,
72 int nid, const EVP_CIPHER *enc,
78 * is NULL then it uses the unencrypted private key form. The 'nid' versions
82 int PEM_write_bio_PKCS8PrivateKey_nid(BIO *bp, EVP_PKEY *x, int nid,
86 return do_pk8pkey(bp, x, 0, nid, NULL, kstr, klen, cb, u);
103 int i2d_PKCS8PrivateKey_nid_bio(BIO *bp, EVP_PKEY *x, int nid,
107 return do_pk8pkey(bp, x, 1, nid, NULL, kstr, klen, cb, u);
110 static int do_pk8pkey(BIO *bp, EVP_PKEY *x, int isder, int nid,
122 if (enc || (nid != -1)) {
136 p8 = PKCS8_encrypt(nid, enc, kstr, klen, NULL, 0, 0, p8inf)
    [all...]
  /external/boringssl/src/crypto/digest_extra/
digest_extra.c 63 #include <openssl/nid.h>
69 int nid; member in struct:nid_to_digest
86 // of hash OIDs, this is no longer supported for lookup by OID or NID.
104 const EVP_MD* EVP_get_digestbynid(int nid) {
105 if (nid == NID_undef) {
111 if (nid_to_digest_mapping[i].nid == nid) {
122 int nid; member in struct:__anon14296
145 return EVP_get_digestbynid(kMDOIDs[i].nid);
154 if (obj->nid != NID_undef)
203 int nid = EVP_MD_type(md); local
    [all...]
  /external/boringssl/src/crypto/x509v3/
v3_lib.c 102 const X509V3_EXT_METHOD *X509V3_EXT_get_nid(int nid)
108 if (nid < 0)
110 tmp.ext_nid = nid;
126 int nid; local
127 if ((nid = OBJ_obj2nid(ext->object)) == NID_undef)
129 return X509V3_EXT_get_nid(nid);
132 int X509V3_EXT_free(int nid, void *ext_data)
134 const X509V3_EXT_METHOD *ext_method = X509V3_EXT_get_nid(nid);
220 * Get critical flag and decoded version of extension from a NID. The "idx"
222 * multiple extensions of the same NID. However multiple extensions with th
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/tools/cert_create/src/
ext.c 51 int nid, ret;
69 nid = OBJ_create(ext->oid, ext->sn, ext->ln);
71 X509V3_EXT_add_alias(nid, ext->alias);
89 m->ext_nid = nid;
110 * nid: extension identifier
117 X509_EXTENSION *ext_new(int nid, int crit, unsigned char *data, int len)
127 ex = X509_EXTENSION_create_by_NID(NULL, nid, crit, ext_data);
149 * nid: extension identifier
157 X509_EXTENSION *ext_new_hash(int nid, int crit, const EVP_MD *md,
210 ex = ext_new(nid, crit, p, sz)
    [all...]

Completed in 262 milliseconds

1 2 3 4 5 6