HomeSort by: relevance | last modified time | path
    Searched defs:attrs (Results 1 - 25 of 269) sorted by relevancy

1 2 3 4 5 6 7 8 91011

  /src/external/bsd/openldap/dist/contrib/ldapc++/examples/
urlTest.cpp 25 StringList attrs = url.getAttrs(); local
26 std::cout << "Attrs: " << std::endl;
27 StringList::const_iterator i = attrs.begin();
28 for( ; i != attrs.end(); i++ ) {
main.cpp 36 LDAPAttributeList* attrs=new LDAPAttributeList(); local
41 attrs->addAttribute(LDAPAttribute("objectClass",values));
42 attrs->addAttribute(LDAPAttribute("cn","Peter"));
43 attrs->addAttribute(LDAPAttribute("sn","Peter,hallo"));
45 "cn=Peter , o=Organisation, c=DE", attrs);
79 LDAPAttributeList* attrs=new LDAPAttributeList();
83 attrs->addAttribute(LDAPAttribute("objectClass",values));
84 attrs->addAttribute(LDAPAttribute("ou","Groups"));
86 "ou=Groups, o=Organisation, c=DE", attrs);
readSchema.cpp 41 StringList attrs; local
42 attrs.add("objectClasses");
43 attrs.add("attributeTypes");
45 attrs);
  /src/external/bsd/openldap/dist/contrib/ldapc++/src/
LDAPAddRequest.cpp 47 LDAPMod** attrs=list->toLDAPModArray(); local
51 m_entry->getDN().c_str(),attrs,tmpSrvCtrls,tmpClCtrls,&msgID);
54 ldap_mods_free(attrs,1);
LDAPUrl.h 125 * @param attrs StringList containing the List of Attributes
127 void setAttrs( const StringList &attrs);
180 enum mode { base, attrs, scope, filter, extensions }; enumerator in enum:LDAPUrl::mode
  /src/external/bsd/openldap/dist/servers/slapd/back-ldap/
add.c 50 LDAPMod **attrs = NULL, local
69 /* just count attrs */ ;
72 attrs = (LDAPMod **)ch_malloc( sizeof( LDAPMod * )*i
74 attrs2 = ( LDAPMod * )&attrs[ i ];
83 attrs[ i ] = &attrs2[ i ];
84 attrs[ i ]->mod_op = LDAP_MOD_BVALUES;
85 attrs[ i ]->mod_type = a->a_desc->ad_cname.bv_val;
89 attrs[i]->mod_vals.modv_bvals =
92 attrs[ i ]->mod_vals.modv_bvals[ j ] = &a->a_vals[ j ];
94 attrs[ i ]->mod_vals.modv_bvals[ j ] = NULL
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/
sol2-c.cc 171 tree attrs = build_tree_list (get_identifier ("init"), local
175 decl_attributes (&decl, attrs, 0);
230 tree attrs = build_tree_list (get_identifier ("fini"), local
234 decl_attributes (&decl, attrs, 0);
  /src/external/gpl3/gcc.old/dist/gcc/config/
sol2-c.cc 171 tree attrs = build_tree_list (get_identifier ("init"), local
175 decl_attributes (&decl, attrs, 0);
230 tree attrs = build_tree_list (get_identifier ("fini"), local
234 decl_attributes (&decl, attrs, 0);
  /src/external/gpl3/gdb.old/dist/gdb/tui/
tui-wingeneral.c 73 int attrs; local
77 attrs = tui_active_border_attrs;
79 attrs = tui_border_attrs;
82 before applying ATTRS. */
87 wattron (win, attrs);
108 wattroff (win, attrs);
  /src/external/gpl3/gdb/dist/gdb/tui/
tui-wingeneral.c 73 int attrs; local
77 attrs = tui_active_border_attrs;
79 attrs = tui_border_attrs;
82 before applying ATTRS. */
87 wattron (win, attrs);
108 wattroff (win, attrs);
  /src/external/bsd/openldap/dist/servers/slapd/back-meta/
add.c 49 LDAPMod **attrs; local
89 attrs = ch_malloc( sizeof( LDAPMod * )*i );
115 attrs[ i ] = ch_malloc( sizeof( LDAPMod ) );
116 if ( attrs[ i ] == NULL ) {
119 attrs[ i ]->mod_op = LDAP_MOD_BVALUES;
120 attrs[ i ]->mod_type = mapped.bv_val;
126 attrs[ i ]->mod_bvalues =
140 attrs[ i ]->mod_bvalues[ j ] = &a->a_vals[ j ];
143 attrs[ i ]->mod_bvalues[ j ] = &mapping->dst;
147 attrs[ i ]->mod_bvalues[ j ] = NULL
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/dwarf2/
die.h 46 if (attrs[i].name == name)
47 return &attrs[i];
57 if (attrs[i].name == DW_AT_addr_base
58 || attrs[i].name == DW_AT_GNU_addr_base)
60 if (attrs[i].form_is_unsigned ())
63 return attrs[i].as_unsigned ();
77 if (attrs[i].name == DW_AT_GNU_ranges_base)
79 if (attrs[i].form_is_unsigned ())
80 return attrs[i].as_unsigned ();
94 if (attrs[i].name == DW_AT_rnglists_base
139 struct attribute attrs[1]; member in struct:die_info
    [all...]
abbrev.h 60 struct attr_abbrev attrs[1]; member in struct:abbrev_info
  /src/external/gpl3/gdb/dist/gdb/dwarf2/
die.h 47 if (attrs[i].name == name)
48 return &attrs[i];
58 if (attrs[i].name == DW_AT_addr_base
59 || attrs[i].name == DW_AT_GNU_addr_base)
61 if (attrs[i].form_is_unsigned ())
64 return attrs[i].as_unsigned ();
78 if (attrs[i].name == DW_AT_GNU_ranges_base)
80 if (attrs[i].form_is_unsigned ())
81 return attrs[i].as_unsigned ();
95 if (attrs[i].name == DW_AT_rnglists_base
147 struct attribute attrs[1]; member in struct:die_info
    [all...]
abbrev.h 60 struct attr_abbrev attrs[1]; member in struct:abbrev_info
  /src/sys/arch/x86/include/
pmap_pv.h 82 uint8_t attrs; member in struct:pmap_page::__anon2227::__anon2228
90 #define pp_attrs pp_u.s.attrs
  /src/tests/fs/ffs/
t_extattr.c 63 static const char *attrs[] = { E, T }; variable
69 for (size_t i = 0; i < __arraycount(attrs); i++) {
71 if (l != strlen(attrs[i]))
73 strlen(attrs[i]));
74 if (strncmp(&buf[p], attrs[i], l) != 0)
76 &buf[p], attrs[i]);
156 check_list(buf, __arraycount(attrs));
161 check_list(buf, __arraycount(attrs));
  /src/tests/fs/vfs/
t_ro.c 121 attrs(const atf_tc_t *tc, const char *mp) function
185 ATF_TC_FSAPPLY_RO(attrs, "can query but not change attributes", filegen);
197 ATF_TP_FSAPPLY_RO(attrs);
  /src/external/bsd/openldap/dist/clients/tools/
ldapcompare.c 190 char *compdn = NULL, *attrs = NULL; local
209 attrs = argv[optind++];
214 sep = strchr(attrs, ':');
261 compdn, attrs, sep );
264 rc = docompare( ld, compdn, attrs, &bvalue, quiet, NULL, NULL );
ldapdelete.c 355 static char *attrs[] = { LDAP_NO_ATTRS, NULL }; local
389 srch_rc = ldap_search_ext_s( ld, base, LDAP_SCOPE_ONELEVEL, NULL, attrs, 1,
  /src/external/bsd/openldap/dist/servers/slapd/back-asyncmeta/
add.c 76 LDAPMod **attrs; local
99 attrs = op->o_tmpalloc(sizeof( LDAPMod * )*i, op->o_tmpmemctx);
110 attrs[ i ] = op->o_tmpalloc( sizeof( LDAPMod ), op->o_tmpmemctx );
111 if ( attrs[ i ] == NULL ) {
114 attrs[ i ]->mod_op = LDAP_MOD_BVALUES;
115 attrs[ i ]->mod_type = a->a_desc->ad_cname.bv_val;
117 attrs[ i ]->mod_bvalues = op->o_tmpalloc( ( j + 1 ) * sizeof( struct berval * ), op->o_tmpmemctx );
119 attrs[ i ]->mod_bvalues[ j ] = op->o_tmpalloc( sizeof( struct berval ), op->o_tmpmemctx );
121 asyncmeta_dn_massage( &dc, &a->a_vals[ j ], attrs[ i ]->mod_bvalues[ j ] );
123 *attrs[ i ]->mod_bvalues[ j ] = a->a_vals[ j ]
    [all...]
  /src/sys/arch/powerpc/include/ibm4xx/
vmparam.h 106 char *attrs; member in struct:pmap_physseg
  /src/external/bsd/openldap/dist/servers/slapd/back-wt/
attr.c 101 char **attrs; local
104 attrs = ldap_str2charray( argv[0], "," );
106 if( attrs == NULL ) {
165 for ( i = 0; attrs[i] != NULL; i++ ) {
174 if( strcasecmp( attrs[i], "default" ) == 0 ) {
180 if ( is_component_reference( attrs[i] ) ) {
181 rc = extract_component_reference( attrs[i], &cr );
187 attrs[i] );
203 rc = slap_str2ad( attrs[i], &ad, &text );
210 attrs[i] )
    [all...]
  /src/external/bsd/openldap/dist/tests/progs/
slapd-read.c 50 char **attrs, int noattrs, int nobind, int maxloop, int force );
54 char *filter, char **attrs, int noattrs, int nobind, int force );
71 "[-T <attrs>] "
72 "[<attrs>] "
92 char **attrs = srchattrs; local
129 attrs = ldap_str2charray( optarg, "," );
130 if ( attrs == NULL ) {
154 attrs = &argv[optind];
161 do_random( config, entry, filter, attrs,
165 do_read( config, entry, NULL, attrs,
179 char *attrs[ 2 ]; local
    [all...]
slapd-search.c 50 char **attrs, int noattrs, int nobind,
56 char **attrs, int noattrs, int nobind, int force );
74 "[<attrs>] "
95 char **attrs = srchattrs; local
134 attrs = ldap_str2charray( optarg, "," );
135 if ( attrs == NULL ) {
172 attrs = &argv[optind];
181 attrs, noattrs, nobind, force );
185 NULL, attrs, noattrs, nobind,
201 char *attrs[ 2 ] local
    [all...]

Completed in 30 milliseconds

1 2 3 4 5 6 7 8 91011