HomeSort by relevance Sort by last modified time
    Searched refs:handle (Results 1 - 25 of 1047) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /onnv/onnv-gate/usr/src/lib/libparted/common/libparted/fs/ext2/
parted_io.h 24 void ext2_destroy_dev_handle(struct ext2_dev_handle *handle);
  /onnv/onnv-gate/usr/src/lib/krb5/kadm5/clnt/
client_handle.c 25 int _kadm5_check_handle(void *handle)
27 CHECK_HANDLE(handle);
  /onnv/onnv-gate/usr/src/lib/krb5/kadm5/srv/
server_handle.c 25 int _kadm5_check_handle(void *handle)
27 CHECK_HANDLE(handle);
server_init.c 49 * Purpose: Check a server handle and return a com_err code if it is
54 * handle The server handle.
57 static int check_handle(void *handle)
59 CHECK_HANDLE(handle);
63 static int dup_db_args(kadm5_server_handle_t handle, char **db_args)
70 handle->db_args = NULL;
74 handle->db_args = calloc(sizeof(char*), count+1);
75 if (handle->db_args == NULL) {
81 handle->db_args[count] = strdup(db_args[count])
187 kadm5_server_handle_t handle; local
422 kadm5_server_handle_t handle = server_handle; local
443 kadm5_server_handle_t handle = server_handle; local
456 kadm5_server_handle_t handle = server_handle; local
469 kadm5_server_handle_t handle = server_handle; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/avs/ns/
model.h 96 #define STRUCT_HANDLE(struct_type, handle) \
97 struct __##handle##_type { \
103 } handle = { NULL, DATAMODEL_ILP32 }
105 #define STRUCT_DECL(struct_type, handle) \
106 struct struct_type __##handle##_buf; \
107 STRUCT_HANDLE(struct_type, handle)
109 #define STRUCT_SET_HANDLE(handle, umodel, addr) \
110 (handle).model = (model_t)(umodel) & DATAMODEL_MASK; \
112 ((handle).ptr.m64) = (addr)
114 #define STRUCT_INIT(handle, umodel)
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/sys/
model.h 87 #define STRUCT_HANDLE(struct_type, handle) \
94 } handle = { NULL, DATAMODEL_ILP32 }
96 #define STRUCT_DECL(struct_type, handle) \
97 struct struct_type __##handle##_buf; \
98 STRUCT_HANDLE(struct_type, handle)
100 #define STRUCT_SET_HANDLE(handle, umodel, addr) \
101 (handle).model = (model_t)(umodel) & DATAMODEL_MASK; \
103 ((handle).ptr.m64) = (addr)
105 #define STRUCT_INIT(handle, umodel) \
106 STRUCT_SET_HANDLE(handle, umodel, &__##handle##_buf
    [all...]
  /onnv/onnv-gate/usr/src/lib/libbc/libc/gen/common/
mblib.c 39 static void *handle = (void *)NULL; /* initialize it with NULL */ variable
47 if (handle == (void *)NULL) {
52 dlclose(handle);
54 handle = (void *)NULL;
66 if (handle != (void *)NULL) /* This library is already opened */
67 return (handle);
78 handle = dlopen(buf, 1);
79 if (handle != (void *)NULL)
85 return (handle);
  /onnv/onnv-gate/usr/src/lib/libresolv2/common/nameser/
ns_parse.c 75 int ns_msg_getflag(ns_msg handle, int flag) {
76 return(((handle)._flags & _ns_flagdata[flag].mask) >> _ns_flagdata[flag].shift);
104 ns_initparse(const u_char *msg, int msglen, ns_msg *handle) {
108 handle->_msg = msg;
109 handle->_eom = eom;
112 NS_GET16(handle->_id, msg);
115 NS_GET16(handle->_flags, msg);
119 NS_GET16(handle->_counts[i], msg);
122 if (handle->_counts[i] == 0)
123 handle->_sections[i] = NULL
    [all...]
  /onnv/onnv-gate/usr/src/lib/libshare/smbfs/
smbfs_scfutil.c 62 * smb_smf_scf_fini(handle)
64 * must be called when done. Called with the handle allocated in
69 smb_smf_scf_fini(smb_scfhandle_t *handle)
71 if (handle != NULL) {
73 if (handle->scf_pg_iter != NULL) {
74 scf_iter_destroy(handle->scf_pg_iter);
75 handle->scf_pg_iter = NULL;
77 if (handle->scf_inst_iter != NULL) {
78 scf_iter_destroy(handle->scf_inst_iter);
79 handle->scf_inst_iter = NULL
211 smb_scfhandle_t *handle; local
970 smb_scfhandle_t *handle = NULL; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/sun_fc/common/
Sun_fcCloseAdapter.cc 28 #include "Handle.h"
36 * @precondition Handle must be valid and open
37 * @postcondition Handle will be closed and should be discarded by caller
38 * @param handle the handle to close
42 void Sun_fcCloseAdapter(HBA_HANDLE handle) {
45 Handle::closeHandle(handle);
  /onnv/onnv-gate/usr/src/lib/smbsrv/libsmb/common/
smb_ht.c 31 * table entries. A handle is associated with each table, which is used
35 * |handle|---> |index 0|--->|item|--->|item|--->
54 static size_t ht_default_hash(HT_HANDLE *handle, const char *key);
81 * The handle and the table are are malloc'd using a single call, to
83 * handle.
85 * On success a pointer to an opaque handle is returned. Otherwise a
133 ht_destroy_table(HT_HANDLE *handle)
138 if (handle == 0)
142 (void) ht_clean_table(handle);
143 while ((item = ht_findfirst(handle, &iterator)) != 0
590 HT_HANDLE *handle; local
    [all...]
smb_scfutil.c 61 * smb_smf_create_service_pgroup(handle, pgroup)
66 smb_smf_create_service_pgroup(smb_scfhandle_t *handle, char *pgroup)
71 if (handle == NULL)
75 * only create a handle if it doesn't exist. It is ok to exist
76 * since the pg handle will be set as a side effect.
78 if (handle->scf_pg == NULL)
79 if ((handle->scf_pg =
80 scf_pg_create(handle->scf_handle)) == NULL)
87 if (scf_service_get_pg(handle->scf_service,
88 pgroup, handle->scf_pg) != 0)
593 smb_scfhandle_t *handle; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libast/common/misc/
errorf.c 33 errorf(void* handle, void* discipline, int level, ...)
38 errorv((discipline && handle) ? *((char**)handle) : (char*)handle, (discipline || level < 0) ? level : (level | ERROR_LIBRARY), ap);
  /onnv/onnv-gate/usr/src/lib/libndmp/common/
libndmp_prop.c 60 /* Handle Init states */
65 /* NDMP scf handle structure */
108 ndmp_scfhandle_t *handle = NULL; local
116 if ((handle = ndmp_smf_scf_init(NDMP_GROUP_FMRI_PREFIX)) == NULL) {
120 if (ndmp_smf_get_pg_name(handle, prop, &pgname)) {
125 if (ndmp_smf_create_service_pgroup(handle, pgname)) {
126 ndmp_smf_scf_fini(handle);
130 if (ndmp_smf_get_property(handle, prop, lval, NDMP_PROP_LEN) != 0) {
131 ndmp_smf_scf_fini(handle);
137 ndmp_smf_scf_fini(handle);
144 ndmp_scfhandle_t *handle = NULL; local
255 ndmp_scfhandle_t *handle; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libfstyp/common/
libfstyp_module.h 49 int fstyp_mod_init(int fd, off64_t offset, fstyp_mod_handle_t *handle);
50 void fstyp_mod_fini(fstyp_mod_handle_t handle);
51 int fstyp_mod_ident(fstyp_mod_handle_t handle);
52 int fstyp_mod_get_attr(fstyp_mod_handle_t handle, nvlist_t **attr);
53 int fstyp_mod_dump(fstyp_mod_handle_t handle, FILE *fout, FILE *ferr);
  /onnv/onnv-gate/usr/src/lib/libast/common/string/
streval.c 39 userconv(const char* s, char** end, void* handle)
41 return((*((Handle_t*)handle)->convert)(s, end));
47 Handle_t handle; local
49 return((handle.convert = convert) ? strexpr(s, end, userconv, &handle) : strexpr(s, end, (Convert_t)0, NiL));
  /onnv/onnv-gate/usr/src/uts/sun4u/excalibur/sys/
xcalppm_var.h 82 #define XCPPM_GET8(handle, address) \
83 ddi_get8(handle, (uint8_t *)(address))
85 #define XCPPM_SETGET8(handle, address, data) \
86 ddi_put8(handle, (uint8_t *)(address), data); \
87 data = XCPPM_GET8(handle, address)
89 #define XCPPM_GET16(handle, address) \
90 ddi_get16(handle, (uint16_t *)(address))
92 #define XCPPM_SETGET16(handle, address, data) \
93 ddi_put16(handle, (uint16_t *)(address), data); \
94 data = XCPPM_GET16(handle, address
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/io/nxge/npi/
npi_espc.c 31 static int npi_vpd_read_prop(npi_handle_t handle, uint32_t ep,
35 npi_espc_pio_enable(npi_handle_t handle)
37 NXGE_REG_WR64(handle, ESPC_REG_ADDR(ESPC_PIO_EN_REG), 0x1);
42 npi_espc_pio_disable(npi_handle_t handle)
44 NXGE_REG_WR64(handle, ESPC_REG_ADDR(ESPC_PIO_EN_REG), 0);
49 npi_espc_eeprom_entry(npi_handle_t handle, io_op_t op, uint32_t addr,
55 NPI_ERROR_MSG((handle.function, NPI_ERR_CTL,
66 NXGE_REG_WR64(handle, ESPC_REG_ADDR(ESPC_PIO_STATUS_REG), val);
67 EPC_WAIT_RW_COMP(handle, &val, EPC_WRITE_COMPLETE);
69 NPI_ERROR_MSG((handle.function, NPI_ERR_CTL
    [all...]
npi_ipp.c 111 npi_ipp_dump_regs(npi_handle_t handle, uint8_t port)
118 NPI_REG_DUMP_MSG((handle.function, NPI_REG_CTL,
125 NXGE_REG_RD64(handle, (uint32_t)offset, &value);
127 NXGE_REG_RD64(handle, offset, &value);
129 NPI_REG_DUMP_MSG((handle.function, NPI_REG_CTL, "0x%08llx "
134 NPI_REG_DUMP_MSG((handle.function, NPI_REG_CTL,
141 npi_ipp_read_regs(npi_handle_t handle, uint8_t port)
148 NPI_DEBUG_MSG((handle.function, NPI_IPP_CTL,
155 NXGE_REG_RD64(handle, (uint32_t)offset, &value);
157 NXGE_REG_RD64(handle, offset, &value)
    [all...]
  /onnv/onnv-gate/usr/src/lib/cfgadm_plugins/ac/common/
mema_test.c 89 if ((handle->max_errors != 0) &&\
90 (handle->max_errors == total_errors)) {\
91 mtest_message(handle, (END_MSG));\
92 error_summary(handle, total_errors);\
93 SET_CONDITION(handle, cond);\
98 error_summary(mtest_handle_t handle, uint_t total_errors)
103 mtest_message(handle, msgbuf);
108 error_print(char *writebuf, char *readbuf, mtest_handle_t handle, long pageno,
114 (void) sprintf(msgbuf, pg_header_msg, PAGE_SIZE(handle) * pageno);
115 mtest_message(handle, msgbuf)
    [all...]
mema_test_subr.c 39 mtest_handle_t handle,
55 new_ent->next = handle->alloc_list;
56 handle->alloc_list = new_ent;
64 mtest_handle_t handle,
69 p = &handle->alloc_list;
80 mtest_deallocate_buf_all(mtest_handle_t handle)
84 while ((p1 = handle->alloc_list) != NULL) {
85 handle->alloc_list = p1->next;
92 mtest_message(mtest_handle_t handle, const char *msg)
94 if (handle->msgp != NULL && handle->msgp->message_routine != NULL)
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/io/igb/
igb_debug.c 39 ddi_acc_handle_t handle; local
55 handle = igb->osdep.cfg_handle;
61 pci_config_get16(handle, PCI_CONF_VENID));
64 pci_config_get16(handle, PCI_CONF_DEVID));
67 pci_config_get16(handle, PCI_CONF_COMM));
70 pci_config_get16(handle, PCI_CONF_STAT));
73 pci_config_get8(handle, PCI_CONF_REVID));
76 pci_config_get8(handle, PCI_CONF_PROGCLASS));
79 pci_config_get8(handle, PCI_CONF_SUBCLASS));
82 pci_config_get8(handle, PCI_CONF_BASCLASS))
    [all...]
  /onnv/onnv-gate/usr/src/pkgdefs/common_files/
i.sendmail 39 handle() {
57 handle $src $dest "sendmail.cw" "local-host-names"
58 handle $src $dest "sendmail.ct" "trusted-users"
  /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/pid/
tst.ret1.c 52 handle(int sig) function
61 (void) signal(SIGUSR1, handle);
tst.ret2.c 46 handle(int sig) function
55 (void) signal(SIGUSR1, handle);

Completed in 2280 milliseconds

1 2 3 4 5 6 7 8 91011>>