Searched refs:oc (Results 1 - 25 of 166) sorted by relevance

1234567

/macosx-10.9.5/dtrace-118.1/test/tst/common/translators/
H A Dtst.PartialDereferencing.d46 char oc;
53 oc = ((struct input_struct) ivar).ic;
67 printf("out.oi: %d\t out.oc: %d\n", out.oi, out.oc);
71 /(100 != out.oi) || (0 != out.oc)/
77 /(100 == out.oi) && (0 == out.oc)/
H A Derr.D_XLATE_REDECL.RepeatTransDecl.d46 char oc;
53 oc = ((struct input_struct *) ivar1)->ic1;
59 oc = ((struct input_struct *) ivar1)->ic1;
H A Dtst.InputAliasTrans.d46 char oc;
53 oc = ((input_t *) ivar)->ic;
H A Dtst.OutputAliasTrans.d47 char oc;
56 oc = ((struct input_struct *) ivar)->ic;
H A Dtst.UnionOutputTrans.d47 char oc;
53 oc = ((struct input_struct *) ivar)->ic;
H A Dtst.StructureAssignment.d47 char oc;
67 printf("out.oi: %d\t out.oc: %d\n", out.oi, out.oc);
71 /(100 != out.oi) || (0 != out.oc)/
77 /(100 == out.oi) && (0 == out.oc)/
H A Dtst.SimultaneousTranslators.d53 char oc;
64 oc = ((struct input_struct2 *) ivar2)->ic2;
H A Dtst.PartialOutputTransDefn.d47 char oc;
H A Dtst.RepeatDeclaration.d51 char oc;
58 oc = ((struct input_struct1 *) ivar1)->ic1;
64 oc = ((struct input_struct2 *) ivar2)->ic2;
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/slapd-modules/allowed/
H A Dallowed.c132 aa_add_oc( ObjectClass *oc, ObjectClass ***ocpp, AttributeType ***atpp ) argument
138 if ( (*ocpp)[ i ] == oc ) {
149 (*ocpp)[ i ] = oc;
152 if ( oc->soc_required ) {
155 for ( i = 0; oc->soc_required[ i ] != NULL; i++ ) {
156 aa_add_at( oc->soc_required[ i ], atpp );
160 if ( oc->soc_allowed ) {
163 for ( i = 0; oc->soc_allowed[ i ] != NULL; i++ ) {
164 aa_add_at( oc->soc_allowed[ i ], atpp );
234 ObjectClass *oc local
327 ObjectClass *oc; local
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/
H A Doc.c0 /* oc.c - object class routines */
59 ObjectClass *oc,
63 * set_flags should only be true if oc is one of operational
71 assert( !( e == NULL || oc == NULL ) );
74 if ( e == NULL || oc == NULL ) {
81 return (e->e_ocflags & oc->soc_flags & SLAP_OC__MASK) != 0;
93 oc->soc_oclass.oc_oid, 0 );
110 if ( objectClass == oc ) {
115 && is_object_subclass( oc, objectClass ) )
127 return ( e->e_ocflags & oc
57 is_entry_objectclass( Entry* e, ObjectClass *oc, unsigned flags ) argument
205 ObjectClass *oc = oc_bvfind( ocname ); local
710 oc_add( LDAPObjectClass *oc, int user, ObjectClass **rsoc, ObjectClass *prev, const char **err ) argument
824 ObjectClass *oc; local
882 ObjectClass *oc; local
911 LDAPObjectClass *oc; local
[all...]
H A Dschema_check.c29 ObjectClass *oc,
57 ObjectClass *sc, *oc, **socs = NULL; local
149 rc = structural_class( aoc->a_vals, &oc, &socs, text, textbuf, textlen,
156 attr_merge_one( e, ad_structuralObjectClass, &oc->soc_cname, NULL );
158 sc = oc;
209 if ( oc == NULL ) {
216 } else if ( sc != oc ) {
221 asc->a_vals[0].bv_val, oc->soc_cname.bv_val );
233 sc = oc;
322 /* check that the entry has required attrs for each oc */
505 oc_check_required( Entry *e, ObjectClass *oc, struct berval *ocname ) argument
589 ObjectClass *oc = socs[i]; local
632 ObjectClass *oc, **socs; local
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/ldapc++/src/
H A DLDAPObjClass.cpp23 LDAPObjClass::LDAPObjClass (const LDAPObjClass &oc){ argument
27 oid = oc.oid;
28 desc = oc.desc;
29 names = oc.names;
30 must = oc.must;
31 may = oc.may;
32 kind = oc.kind;
33 sup = oc.sup;
H A DLDAPSchema.h45 * @param oc description of one objectclass (string returned by search
50 void setObjectClasses (const StringList &oc);
H A DLDAPSchema.cpp33 LDAPObjClass oc ( (*i) );
34 StringList names = oc.getNames();
42 object_classes [lc_name] = LDAPObjClass (oc);
/macosx-10.9.5/network_cmds-433/alias/
H A Dalias_cuseeme.c119 struct oc_header *oc; local
127 oc = (struct oc_header *)(cu + 1);
128 ci = (struct client_info *)(oc + 1);
131 if ((char *)oc <= end) {
136 for(i = 0; (char *)(ci + 1) <= end && i < oc->client_count; i++, ci++)
/macosx-10.9.5/tcl-102/tk/tk/library/demos/
H A Daniwave.tcl60 set oc $waveCoords
61 for {set i 1} {$i<[llength $oc]} {incr i 2} {
63 lset waveCoords $i [lindex $oc \
64 [expr {$i+2>[llength $oc] ? 1 : $i+2}]]
67 [lindex $oc [expr {$i-2<0 ? "end" : $i-2}]]
/macosx-10.9.5/CPANInternal-140/Perl-Ldap/lib/Net/LDAP/
H A DSchema.pm113 sub all_objectclasses { values %{shift->{oc}} }
123 my $oc = shift;
125 my $elem = $self->objectclass( $oc )
140 my @oc = @_ or return;
145 if ( ref($oc[0]) && UNIVERSAL::isa( $oc[0], "Net::LDAP::Entry" ) ) {
146 my $entry = $oc[0];
147 @oc = $entry->get_value( "objectclass" )
154 while (@oc) {
155 my $oc
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/pt/rde_critcl/
H A Dtc.c118 long int oc, off, top, end;
121 rde_stack_get (tc->off, &oc, (void***) &ov);
123 ASSERT_BOUNDS(at,oc);
126 if ((at+1) == oc) {
144 long int oc, off, top, end;
147 rde_stack_get (tc->off, &oc, (void***) &ov);
149 ASSERT_BOUNDS(at,oc);
150 ASSERT_BOUNDS(last,oc);
153 if ((last+1) == oc) {
117 long int oc, off, top, end; local
143 long int oc, off, top, end; local
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/tests/data/
H A Dslapd-nis-master.conf17 include @SCHEMADIR@/others_nis.oc.conf
19 include @SCHEMADIR@/nis.oc.conf
21 include @SCHEMADIR@/internet_mail.oc.conf
/macosx-10.9.5/CPANInternal-140/Perl-Ldap/data/
H A Dslapd-conf.in5 include ./data/slapd.oc.conf
/macosx-10.9.5/Security-55471.14.18/include/security_utilities/
H A Dtransactions.h53 void outcome(Outcome oc) { mOutcome = oc; } argument
/macosx-10.9.5/Security-55471.14.18/libsecurity_utilities/lib/
H A Dtransactions.h53 void outcome(Outcome oc) { mOutcome = oc; } argument
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/struct/graph/
H A Dgraph.h21 G* g, int oc, Tcl_Obj* const* ov);
26 int oc, Tcl_Obj* const* ov);
/macosx-10.9.5/bind9-45.100/bind9/unit/atf-src/atf-sh/
H A Datf-check.cpp590 run_output_check(const output_check oc, const atf::fs::path& path, argument
595 if (oc.type == oc_empty) {
597 if (!oc.negated && !is_empty) {
601 } else if (oc.negated && is_empty) {
606 } else if (oc.type == oc_file) {
607 const bool equals = compare_files(path, atf::fs::path(oc.value));
608 if (!oc.negated && !equals) {
611 print_diff(atf::fs::path(oc.value), path);
613 } else if (oc.negated && equals) {
615 cat_file(atf::fs::path(oc
[all...]

Completed in 213 milliseconds

1234567