Lines Matching refs:optr
229 struct obj_ptr *optr; in push_obj() local
239 if ((optr = calloc(1, sizeof(*optr))) == NULL) { in push_obj()
244 optr->object = obj; in push_obj()
245 SLIST_INSERT_HEAD(olist, optr, next); in push_obj()
898 struct obj_ptr *optr; in schema_parse_objectclass() local
987 SLIST_FOREACH(optr, obj->sup, next) { in schema_parse_objectclass()
989 optr->object->kind == KIND_AUXILIARY) { in schema_parse_objectclass()
992 OBJ_NAME(obj), OBJ_NAME(optr->object)); in schema_parse_objectclass()
997 optr->object->kind == KIND_STRUCTURAL) { in schema_parse_objectclass()
1000 OBJ_NAME(obj), OBJ_NAME(optr->object)); in schema_parse_objectclass()
1005 optr->object->kind != KIND_ABSTRACT) { in schema_parse_objectclass()
1008 OBJ_NAME(obj), OBJ_NAME(optr->object)); in schema_parse_objectclass()
1182 struct obj_ptr *optr; in schema_dump_objlist() local
1191 optr = SLIST_FIRST(olist); in schema_dump_objlist()
1192 if (SLIST_NEXT(optr, next) == NULL) { in schema_dump_objlist()
1195 strlcat(buf, OBJ_NAME(optr->object), size) >= size) in schema_dump_objlist()
1200 SLIST_FOREACH(optr, olist, next) { in schema_dump_objlist()
1201 if (strlcat(buf, OBJ_NAME(optr->object), size) >= size || in schema_dump_objlist()
1204 if (SLIST_NEXT(optr, next) != NULL && in schema_dump_objlist()