/illumos-gate/usr/src/cmd/ipf/lib/common/ |
H A D | ipf_dotuning.c | 15 ipfobj_t obj; local 20 obj.ipfo_rev = IPFILTER_VERSION; 21 obj.ipfo_size = sizeof(tu);; 22 obj.ipfo_ptr = (void *)&tu; 23 obj.ipfo_type = IPFOBJ_TUNEABLE; 28 if ((*iocfn)(fd, SIOCIPFGETNEXT, &obj) == -1) { 43 if ((*iocfn)(fd, SIOCIPFSET, &obj) == -1) { 54 if ((*iocfn)(fd, SIOCIPFGET, &obj) == -1) {
|
H A D | printhash_live.c | 29 ipfobj_t obj; local 39 obj.ipfo_rev = IPFILTER_VERSION; 40 obj.ipfo_type = IPFOBJ_LOOKUPITER; 41 obj.ipfo_ptr = &iter; 42 obj.ipfo_size = sizeof(iter); 54 while (!last && (ioctl(fd, SIOCLOOKUPITER, &obj) == 0)) {
|
H A D | printpool_live.c | 29 ipfobj_t obj; local 39 obj.ipfo_rev = IPFILTER_VERSION; 40 obj.ipfo_type = IPFOBJ_LOOKUPITER; 41 obj.ipfo_ptr = &iter; 42 obj.ipfo_size = sizeof(iter); 54 while (!last && (ioctl(fd, SIOCLOOKUPITER, &obj) == 0)) {
|
/illumos-gate/usr/src/lib/libast/common/disc/ |
H A D | memfatal.c | 48 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);
|
/illumos-gate/usr/src/lib/krb5/dyn/ |
H A D | dyn_create.c | 31 DynObjectP obj; local 33 obj = (DynObjectP) malloc(sizeof(DynObjectRecP)); 34 if (obj == NULL) 38 obj->array = (DynPtr) malloc(1); 40 obj->array = (DynPtr) malloc(0); 42 obj->el_size = el_size; 43 obj->num_el = obj->size = 0; 44 obj->debug = obj [all...] |
/illumos-gate/usr/src/lib/libnisdb/ |
H A D | db_log_entry.cc | 44 entry_object *obj) 49 object = obj; 43 db_log_entry(db_action a, vers * v, db_query *q, entry_object *obj) argument
|
H A D | db_query.cc | 75 * 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 D | nisdb_mt.cc | 102 * 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);
|
/illumos-gate/usr/src/lib/libast/common/cdt/ |
H A D | dtrenew.c | 31 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 D | dtwalk.c | 39 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;
|
/illumos-gate/usr/src/cmd/lvm/metassist/common/ |
H A D | volume_dlist.h | 45 void *obj; member in struct:dlist 98 * the obj member of the dlist_t element to be created 148 * @param obj 152 * the comparison function, passed obj and the obj member 162 void *obj, 181 * point at obj. 185 extern dlist_t *dlist_new_item(void *obj); 230 void *obj, 251 void *obj, [all...] |
/illumos-gate/usr/src/lib/libsip/common/ |
H A D | sip_hash.c | 52 sip_hash_add(sip_hash_t *sip_hash, void *obj, int hindex) argument 57 assert(obj != NULL); 62 new_obj->sip_obj = obj;
|
/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/ |
H A D | Assert.java | 67 static void nonNullParameter(Object obj, String param) { argument 68 if (obj == null) {
|
H A D | AttributeString.java | 113 * 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);
|
/illumos-gate/usr/src/cmd/cmd-inet/lib/nwamd/ |
H A D | dlpi_events.c | 96 nwamd_dlpi_add_link(nwamd_object_t obj) argument 98 nwamd_ncu_t *ncu = obj->nwamd_object_data; 104 ncu, obj->nwamd_object_name, ncu != NULL ? ncu->ncu_type : -1); 113 obj->nwamd_object_name); 132 obj->nwamd_object_name, dlpi_strerror(rc)); 141 "dlpi thread for %s: %s", obj->nwamd_object_name, 152 nwamd_dlpi_delete_link(nwamd_object_t obj) argument 154 nwamd_ncu_t *ncu = obj->nwamd_object_data; 157 ncu, obj->nwamd_object_name, ncu != NULL ? ncu->ncu_type : -1);
|
/illumos-gate/usr/src/cmd/isns/isnsd/ |
H A D | Makefile | 36 COBJS += dump.o msgq.o server.o config.o esi.o obj.o utils.o dd.o func.o 68 obj.o := CERRWARN += -erroff=E_CONST_OBJ_SHOULD_HAVE_INITIZR 69 obj.o := CERRWARN += -erroff=E_IMPLICIT_DECL_FUNC_RETURN_INT
|
H A D | dseng.c | 59 isns_obj_t *obj; local 74 ec = target_load_obj(&prev, &obj, &phase); 75 while (ec == 0 && obj != NULL) { 77 switch (obj->type) { 80 ptype = obj->type; 81 ec = register_object(obj, &puid, NULL); 85 ec = register_object(obj, &puid, NULL); 87 eid_attr = &obj->attrs[ 95 scn_bitmap = &obj->attrs[ATTR_INDEX_ISCSI( 97 scn_name = &obj [all...] |
/illumos-gate/usr/src/cmd/sgs/liblddbg/common/ |
H A D | support.c | 55 Dbg_support_load(Lm_list *lml, const char *obj, const char *func) argument 60 dbg_print(lml, MSG_INTL(MSG_SUP_ROUTINE), obj, func); 64 Dbg_support_vnone(Lm_list *lml, const char *obj) argument 69 dbg_print(lml, MSG_INTL(MSG_SUP_VNONE), obj); 73 Dbg_support_action(Lm_list *lml, const char *obj, const char *func, argument 94 dbg_print(lml, MSG_INTL(MSG_SUP_CALLING_1), func, obj); 96 dbg_print(lml, MSG_INTL(MSG_SUP_CALLING_2), func, obj,
|
H A D | shdr.c | 61 Dbg_shdr_modified(Lm_list *lml, const char *obj, uchar_t osabi, Half mach, argument 74 dbg_fmt_isec_name2(name, ndx, buf, &alloc_mem), obj);
|
H A D | unused.c | 91 const char *obj) 117 dbg_print(lml, fmt, path, obj); 90 Dbg_unused_path(Lm_list *lml, const char *path, uint_t orig, uint_t dup, const char *obj) argument
|
/illumos-gate/usr/src/common/smbsrv/ |
H A D | smb_token.c | 101 * Pre-condition: obj is non-null. 104 smb_token_encode(smb_token_t *obj, uint32_t *len) argument 109 if (!obj) { 114 *len = xdr_sizeof(smb_token_xdr, obj); 123 if (!smb_token_xdr(&xdrs, obj)) { 140 smb_logon_t *obj; local 145 if ((obj = malloc(sizeof (smb_logon_t))) == NULL) { 151 bzero(obj, sizeof (smb_logon_t)); 152 if (!smb_logon_xdr(&xdrs, obj)) { 154 free(obj); 163 smb_logon_free(smb_logon_t *obj) argument [all...] |
/illumos-gate/usr/src/lib/smbsrv/libsmb/common/ |
H A D | smb_door_encdec.c | 98 smb_string_t obj; local 103 if ((obj.buf = s) == NULL) { 108 len = xdr_sizeof(smb_string_xdr, &obj); 116 if (!smb_string_xdr(&xdrs, &obj)) { 135 smb_string_decode(smb_string_t *obj, char *buf, size_t buflen) argument 142 bzero(obj, sizeof (smb_string_t)); 143 if (!smb_string_xdr(&xdrs, obj))
|
/illumos-gate/usr/src/lib/libslp/clib/ |
H A D | slp_jni_support.c | 190 jobject obj, 189 Java_com_sun_slp_Syslog_syslog(JNIEnv *env, jobject obj, jint priority, jstring jmsg) argument
|
/illumos-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/ |
H A D | BSTItem.java | 49 public BSTItem(String newKey, Object obj) { argument 51 data = obj;
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/ |
H A D | snoop_nbp.c | 106 char obj[100]; local 108 char *otail = &obj[sizeof (obj)]; 111 op = obj; 136 "Name = \"%s\"", obj);
|