Searched refs:attrib (Results 1 - 25 of 52) sorted by relevance

123

/freebsd-10.0-release/crypto/openssl/crypto/pkcs12/
H A Dp12_attr.c68 if (X509at_add1_attr_by_NID(&bag->attrib, NID_localKeyID,
93 if (X509at_add1_attr_by_NID(&bag->attrib, NID_friendlyName,
104 if (X509at_add1_attr_by_NID(&bag->attrib, NID_friendlyName,
114 if (X509at_add1_attr_by_NID(&bag->attrib, NID_ms_csp_name,
123 X509_ATTRIBUTE *attrib; local
127 attrib = sk_X509_ATTRIBUTE_value (attrs, i);
128 if (OBJ_obj2nid (attrib->object) == attr_nid) {
129 if (sk_ASN1_TYPE_num (attrib->value.set))
130 return sk_ASN1_TYPE_value(attrib->value.set, 0);
H A Dp12_kiss.c229 ASN1_TYPE *attrib; local
233 if ((attrib = PKCS12_get_attr (bag, NID_friendlyName)))
234 fname = attrib->value.bmpstring;
236 if ((attrib = PKCS12_get_attr (bag, NID_localKeyID)))
237 lkid = attrib->value.octet_string;
H A Dp12_asn.c111 ASN1_SET_OF_OPT(PKCS12_SAFEBAG, attrib, X509_ATTRIBUTE)
H A Dpkcs12.h120 STACK_OF(X509_ATTRIBUTE) *attrib; member in struct:__anon5194
162 PKCS12_get_attr_gen(bag->attrib, attr_nid)
/freebsd-10.0-release/lib/libefi/
H A Defi_setvar.c47 efi_setvar(char *name, uuid_t *vendor, uint32_t attrib, size_t datasize, argument
59 req.attrib = attrib;
H A Defi_getvar.c47 efi_getvar(char *name, uuid_t *vendor, uint32_t *attrib, size_t *datasize, argument
64 if (!error && attrib != NULL)
65 *attrib = req.attrib;
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dmemattr.c45 const struct mem_attrib *attrib)
75 new->attrib = *attrib;
130 region.attrib = default_mem_attrib;
141 struct mem_attrib attrib;
156 attrib = default_mem_attrib;
160 attrib.mode = MEM_RW;
162 attrib.mode = MEM_RO;
164 attrib.mode = MEM_WO;
167 attrib
44 create_mem_region(CORE_ADDR lo, CORE_ADDR hi, const struct mem_attrib *attrib) argument
140 struct mem_attrib attrib; local
217 struct mem_attrib *attrib; local
[all...]
H A Dmemattr.h86 struct mem_attrib attrib; member in struct:mem_region
H A Ddcache.c271 if (!region->attrib.cache || region->attrib.mode == MEM_RO)
305 &region->attrib);
353 if (!region->attrib.cache || region->attrib.mode == MEM_WO)
364 &region->attrib);
H A Dgdb-events.sh44 read="class returntype function formal actual attrib"
182 echo "extern ${returntype} (*${function}_event) (${formal})${attrib};"
212 echo " gdb_events_${function}_ftype *${function}${attrib};"
230 echo "extern ${returntype} ${function}_event (${formal})${attrib};"
233 echo "extern ${returntype} ${function}_event (${formal})${attrib};"
325 # echo "${returntype} (*${function}_event) (${formal})${attrib} = 0;"
H A Docd.h110 struct mem_attrib *attrib,
H A Dtarget.c875 struct mem_attrib *attrib)
899 return xfer_memory (memaddr, myaddr, len, 0, attrib, &current_target);
904 (memaddr, myaddr, len, write, attrib, &current_target);
914 res = t->to_xfer_memory (memaddr, myaddr, len, write, attrib, t);
955 switch (region->attrib.mode)
970 if (region->attrib.cache)
975 &region->attrib);
1026 switch (region->attrib.mode)
1045 if (region->attrib.cache)
1050 &region->attrib);
874 do_xfer_memory(CORE_ADDR memaddr, char *myaddr, int len, int write, struct mem_attrib *attrib) argument
1825 debug_to_xfer_memory(CORE_ADDR memaddr, char *myaddr, int len, int write, struct mem_attrib *attrib, struct target_ops *target) argument
[all...]
H A Dremote-sim.c102 struct mem_attrib *attrib,
750 int write, struct mem_attrib *attrib,
749 gdbsim_xfer_inferior_memory(CORE_ADDR memaddr, char *myaddr, int len, int write, struct mem_attrib *attrib, struct target_ops *target) argument
H A Dtarget.h337 struct mem_attrib *attrib,
552 struct mem_attrib *attrib);
/freebsd-10.0-release/tools/regression/kqueue/
H A Dmain.c77 #define KEVFFL_DUMP(attrib) \
78 if (kev->fflags & attrib) \
79 strncat(buf, #attrib" ", 64);
113 #define KEVFL_DUMP(attrib) \
114 if (kev->flags & attrib) \
115 strncat(buf, #attrib" ", 64);
/freebsd-10.0-release/sys/ia64/include/
H A Diodev.h48 uint32_t attrib; member in struct:iodev_efivar_req
/freebsd-10.0-release/sys/ia64/ia64/
H A Defi.c244 efi_var_get(efi_char *name, struct uuid *vendor, uint32_t *attrib, argument
249 status = efi_runtime->rt_getvar(name, vendor, attrib, datasize, data);
263 efi_var_set(efi_char *name, struct uuid *vendor, uint32_t attrib, argument
268 status = efi_runtime->rt_setvar(name, vendor, attrib, datasize, data);
H A Diodev_machdep.c121 error = efi_var_get(name, &req->vendor, &req->attrib, &req->datasize,
198 error = efi_var_set(name, &req->vendor, req->attrib, req->datasize,
/freebsd-10.0-release/contrib/ee/
H A Dnew_curse.h251 extern void Char_del P_((char *line, char *attrib, int offset, int maxlen));
252 extern void Char_ins P_((char *line, char *attrib, int newc, int newatt, int offset, int maxlen));
255 extern void Char_out P_((int newc, int newatt, char *line, char *attrib, int offset));
/freebsd-10.0-release/gnu/usr.bin/gdb/kgdb/
H A Dtrgt.c237 struct mem_attrib *attrib, struct target_ops *target)
250 return (tb->to_xfer_memory(memaddr, myaddr, len, write, attrib, tb));
236 kgdb_trgt_xfer_memory(CORE_ADDR memaddr, char *myaddr, int len, int write, struct mem_attrib *attrib, struct target_ops *target) argument
/freebsd-10.0-release/crypto/openssh/
H A Dservconf.c702 char *arg, *attrib, *cp = *condition; local
714 while ((attrib = strdelim(&cp)) && *attrib != '\0') {
716 error("Missing Match criteria for %s", attrib);
720 if (strcasecmp(attrib, "user") == 0) {
730 } else if (strcasecmp(attrib, "group") == 0) {
741 } else if (strcasecmp(attrib, "host") == 0) {
751 } else if (strcasecmp(attrib, "address") == 0) {
768 } else if (strcasecmp(attrib, "localaddress") == 0){
786 } else if (strcasecmp(attrib, "localpor
[all...]
/freebsd-10.0-release/sys/geom/part/
H A Dg_part_pc98.c299 sbuf_printf(sb, "%s<attrib>bootable</attrib>\n",
302 sbuf_printf(sb, "%s<attrib>active</attrib>\n", indent);
495 const char *attrib, unsigned int set)
505 if (strcasecmp(attrib, "active") == 0)
507 else if (strcasecmp(attrib, "bootable") == 0)
494 g_part_pc98_setunset(struct g_part_table *table, struct g_part_entry *baseentry, const char *attrib, unsigned int set) argument
H A Dg_part_gpt.c109 struct g_part_entry *baseentry, const char *attrib, unsigned int set);
679 sbuf_printf(sb, "%s<attrib>bootme</attrib>\n", indent);
681 sbuf_printf(sb, "%s<attrib>bootonce</attrib>\n",
685 sbuf_printf(sb, "%s<attrib>bootfailed</attrib>\n",
966 struct g_part_entry *baseentry, const char *attrib, unsigned int set)
977 if (strcasecmp(attrib, "active") == 0) {
1005 if (strcasecmp(attrib, "bootm
965 g_part_gpt_setunset(struct g_part_table *basetable, struct g_part_entry *baseentry, const char *attrib, unsigned int set) argument
[all...]
/freebsd-10.0-release/sys/i386/i386/
H A Dbios.c572 u_int16_t attrib; member in struct:pnp_sysdev
697 ((pd->attrib & PNPATTR_NODISABLE) ? 0 : ISACFGATTR_CANDISABLE) |
698 ((!(pd->attrib & PNPATTR_NOCONFIG) &&
699 PNPATTR_CONFIG(pd->attrib) != PNPATTR_CONFIG_STATIC)
703 (!(pd->attrib & PNPATTR_NOCONFIG) &&
704 PNPATTR_CONFIG(pd->attrib) != PNPATTR_CONFIG_STATIC)
/freebsd-10.0-release/crypto/openssl/apps/
H A Dpkcs12.c772 print_attribs (out, bag->attrib, "Bag Attributes");
786 print_attribs (out, bag->attrib, "Bag Attributes");
805 print_attribs (out, bag->attrib, "Bag Attributes");
816 print_attribs (out, bag->attrib, "Bag Attributes");

Completed in 308 milliseconds

123