Searched defs:obj (Results 1 - 25 of 109) sorted by relevance

12345

/osnet-11/usr/src/lib/libast/common/disc/
H A Dmemfatal.c48 nomalloc(Vmalloc_t* region, int type, void* obj, Vmdisc_t* disc) argument
56 error(ERROR_SYSTEM|3, "invalid pointer %p passed to free or realloc", obj);
60 error(ERROR_SYSTEM|3, "storage allocator out of space on %lu byte request ( region %lu segments %lu busy %lu:%lu:%lu free %lu:%lu:%lu )", (size_t)obj, st.extent, st.n_seg, st.n_busy, st.s_busy, st.m_busy, st.n_free, st.s_free, st.m_free);
/osnet-11/usr/src/lib/libnisdb/
H A Ddb_log_entry.cc44 entry_object *obj)
49 object = obj;
43 db_log_entry(db_action a, vers * v, db_query *q, entry_object *obj) argument
H A Ddb_query.cc75 * Returns an empty query if 'obj' is not a valid entry.
77 * (i.e. do not share pointers with strings in 'obj'.)
79 db_query::db_query(db_scheme *scheme, entry_object_p obj) argument
84 int objsize = obj->en_cols.en_cols_len; // total num columns in obj */
85 struct entry_col * objcols = obj->en_cols.en_cols_val;
100 wherein_obj = keyinfo[i].column_number; // column in entry obj
H A Dnisdb_mt.cc102 * Save a copy of 'obj' in the TSD. If the TSD already holds an old object,
111 saveOldObjForModify(entry_obj *obj, int *storedP) { argument
126 if (obj != 0) {
127 eObj = new_entry((entry_object *)obj);
H A Ddb_dictlog.cc53 table_obj *obj)
58 table_object = obj;
95 free_table_entry(table_obj* obj) argument
97 if (obj == NULL)
100 if (obj->ta_type != NULL)
101 free(obj->ta_type);
103 table_col* tcs = obj->ta_cols.ta_cols_val;
105 for (i = 0; i < obj->ta_cols.ta_cols_len; i++) {
111 if (obj->ta_path != NULL)
112 free(obj
52 db_dictlog_entry(int a, vers * v, char *tname, table_obj *obj) argument
120 table_obj *obj; local
[all...]
H A Ddb_entry.cc151 free_entry(entry_object * obj) argument
157 if (obj != NULL) {
158 num_cols = obj->en_cols.en_cols_len;
159 cols = obj->en_cols.en_cols_val;
165 if (obj->en_type)
166 delete obj->en_type;
167 delete obj;
/osnet-11/usr/src/lib/libast/common/cdt/
H A Ddtrenew.c31 Void_t* dtrenew(Dt_t* dt, reg Void_t* obj) argument
33 Void_t* dtrenew(dt, obj)
35 reg Void_t* obj;
44 if(!(e = dt->data->here) || _DTOBJ(e,disc->link) != obj)
48 return obj;
72 key = _DTKEY(obj,disc->key,disc->size);
78 return (*dt->meth->searchf)(dt,(Void_t*)e,DT_RENEW) ? obj : NIL(Void_t*);
H A Ddtwalk.c39 reg Void_t *obj, *next; local
43 for(obj = dtfirst(dt); obj; )
46 next = dtnext(dt,obj);
47 if((rv = (*userf)(walk, obj, data )) < 0)
49 obj = next;
H A Ddtlist.c30 static Void_t* dtlist(reg Dt_t* dt, reg Void_t* obj, reg int type) argument
32 static Void_t* dtlist(dt, obj, type)
34 reg Void_t* obj;
48 if(!obj)
81 !(obj = (*disc->makef)(dt,obj,disc)) )
84 r = _DTLNK(obj,lk);
89 ((Dthold_t*)r)->obj = obj;
92 (*disc->freef)(dt,obj,dis
[all...]
H A Ddtview.c31 static Void_t* dtvsearch(Dt_t* dt, reg Void_t* obj, reg int type) argument
33 static Void_t* dtvsearch(dt,obj,type)
35 reg Void_t* obj;
46 return (*(dt->meth->searchf))(dt,obj,type);
51 if((o = (*(d->meth->searchf))(d,obj,type)) )
63 { if(!(o = (*d->meth->searchf)(d, obj, type)) )
89 if(!dt->walk || obj != _DTOBJ(dt->walk->data->here, dt->walk->disc->link) )
91 if((o = (*(d->meth->searchf))(d, obj, DT_SEARCH)) )
94 if(!(obj = o) )
98 for(d = dt->walk, obj
[all...]
H A Ddthash.c26 ** obj: what to look for
100 static Void_t* dthash(Dt_t* dt, reg Void_t* obj, int type) argument
102 static Void_t* dthash(dt,obj,type)
104 reg Void_t* obj;
122 if(!obj)
167 { if(!dtsearch(dt,obj) )
173 { if(_DTOBJ(t,lk) == obj) /* delete this specific object */
185 { key = (type&DT_MATCH) ? obj : _DTKEY(obj,ky,sz);
190 { r = (Dtlink_t*)obj;
[all...]
H A Ddttree.c26 ** obj: the object to look for.
33 static Void_t* dttree(Dt_t* dt, Void_t* obj, int type) argument
35 static Void_t* dttree(dt,obj,type)
37 Void_t* obj;
54 if(!obj)
95 { key = _DTKEY(obj,ky,sz);
96 for(o = dtsearch(dt,obj); o; o = dtnext(dt,o) )
100 if(o == obj)
110 { key = (type&DT_MATCH) ? obj : _DTKEY(obj,k
[all...]
/osnet-11/usr/src/lib/libradproto/common/
H A Dradproto_util.c33 xdr_embed(xdrproc_t proc, void *obj, uint_t *len, char **val) argument
36 uint_t size = xdr_sizeof(proc, obj);
47 if (!proc(&mxdr, obj)) {
60 xdr_unembed(xdrproc_t proc, void *obj, uint_t len, char *val) argument
67 if (!proc(&mxdr, obj)) {
/osnet-11/usr/src/lib/libsip/common/
H A Dsip_hash.c52 sip_hash_add(sip_hash_t *sip_hash, void *obj, int hindex) argument
57 assert(obj != NULL);
62 new_obj->sip_obj = obj;
H A Dsip_reass.c128 sip_get_tcp_msg(sip_conn_object_t obj, char *msg, size_t *msglen) argument
147 obj_val = (void *)obj;
/osnet-11/usr/src/lib/libslp/javalib/com/sun/slp/
H A DAssert.java67 static void nonNullParameter(Object obj, String param) { argument
68 if (obj == null) {
H A DAttributeString.java113 * Return true if obj pattern matches with this string.
116 public boolean equals(Object obj) { argument
118 if (obj == this) {
123 if (!(obj instanceof AttributeString)) {
128 return cstring.equals(((AttributeString)obj).cstring);
H A DServiceURL.java228 public boolean equals(Object obj) { argument
230 if (obj == this) {
235 if (!(obj instanceof ServiceURL)) {
239 ServiceURL surl = (ServiceURL)obj;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/ByteLoader/
H A Dbyterun.c37 bset_obj_store(pTHX_ struct byteloader_state *bstate, void *obj, I32 ix) argument
43 bstate->bs_obj_list[ix] = obj;
44 return obj;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Storable/t/
H A Dcompat06.t70 $self->{obj} = \@pool;
82 sub obj { $_[0]->{obj} } subroutine
/osnet-11/usr/src/lib/libslp/clib/
H A Dslp_jni_support.c190 jobject obj,
189 Java_com_sun_slp_Syslog_syslog(JNIEnv *env, jobject obj, jint priority, jstring jmsg) argument
/osnet-11/usr/src/lib/libsmb/common/
H A Dsmb_door_encdec.c100 smb_string_t obj; local
105 if ((obj.buf = s) == NULL) {
110 len = xdr_sizeof(smb_string_xdr, &obj);
118 if (!smb_string_xdr(&xdrs, &obj)) {
137 smb_string_decode(smb_string_t *obj, char *buf, size_t buflen) argument
144 bzero(obj, sizeof (smb_string_t));
145 if (!smb_string_xdr(&xdrs, obj)) {
146 xdr_free(smb_string_xdr, (char *)obj);
/osnet-11/usr/src/lib/libast/common/comp/
H A Dhsearch.c69 static void hashfree(Dt_t* dt, Void_t* obj, Dtdisc_t* disc) argument
71 static void hashfree(dt, obj, disc)
73 Void_t* obj;
77 free(((Hash_t*)obj)->item.key);
78 free(obj);
H A Dtsearch.c174 Tree_t obj; local
181 obj.key = (Void_t*)key;
182 dtdelete(dt,&obj);
199 static void _twalk(Tree_t* obj, void(*action)(const Void_t*,VISIT,int), int level) argument
201 static void _twalk(obj,action,level)
202 Tree_t* obj;
206 { if(!obj->lchild && !obj->rchild)
207 (*action)((Void_t*)obj,leaf,level);
209 { (*action)((Void_t*)obj,preorde
[all...]
/osnet-11/usr/src/lib/krb5/dyn/
H A Ddyn.c33 int DynAppend(obj, els, num)
34 DynObjectP obj;
38 return DynInsert(obj, DynSize(obj), els, num);
58 DynObjectP obj; local
60 obj = (DynObjectP) malloc(sizeof(DynObjectRecP));
61 if (obj == NULL)
64 obj->array = (DynPtr) malloc(1);
65 if (obj->array == NULL) {
66 free(obj);
[all...]

Completed in 94 milliseconds

12345