HomeSort by relevance Sort by last modified time
    Searched defs:lh (Results 1 - 25 of 52) sorted by null

1 2 3

  /onnv/onnv-gate/usr/src/lib/libdiskmgt/common/
inuse_zpool.c 147 void *lh = NULL; local
149 if ((lh = dlopen("libzfs.so", RTLD_NOW)) == NULL) {
150 return (lh);
158 dlsym(lh, "libzfs_init")) == NULL ||
161 dlsym(lh, "zpool_in_use")) == NULL) {
162 (void) dlclose(lh);
167 (void) dlclose(lh);
171 return (lh);
inuse_vxvm.c 260 void *lh; local
262 if ((lh = dlopen(VXVM_LIB_NAME, RTLD_NOW)) == NULL) {
266 if ((vxdl_libvxvm_get_version = (int (*)(int))dlsym(lh,
268 (void) dlclose(lh);
272 if ((vxdl_libvxvm_get_conf = (int (*)(int))dlsym(lh,
274 (void) dlclose(lh);
278 if ((vxdl_libvxvm_get_dgs = (int (*)(int, vm_name_t []))dlsym(lh,
280 (void) dlclose(lh);
285 dlsym(lh, "libvxvm_get_disks")) == NULL) {
286 (void) dlclose(lh);
296 void *lh; local
    [all...]
inuse_svm.c 518 void *lh; local
520 if ((lh = dlopen("/usr/lib/libmeta.so", RTLD_NOW)) == NULL) {
524 mdl_get_max_sets = (set_t (*)(md_error_t *))dlsym(lh, "get_max_sets");
526 mdl_mdclrerror = (void(*)(md_error_t *))dlsym(lh, "mdclrerror");
528 mdl_mdnullerror = (md_error_t *)dlsym(lh, "mdnullerror");
530 mdl_metaflushnames = (void (*)(int))dlsym(lh, "metaflushnames");
532 mdl_metaflushsetname = (void (*)(mdsetname_t *))dlsym(lh,
535 mdl_metafreenamelist = (void (*)(mdnamelist_t *))dlsym(lh,
538 mdl_metafreereplicalist = (void (*)(md_replicalist_t *))dlsym(lh,
542 md_error_t *))dlsym(lh, "metaget_drivedesc")
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fs.d/cachefs/cachefswssize/
cachefswssize.c 63 struct cachefs_log_logfile_header *lh; local
109 lh = stats_log_getheader(sc);
111 if (lh->lh_errno != 0)
113 strerror(lh->lh_errno));
168 lh->lh_maxbsize / (u_offset_t) 1024));
  /onnv/onnv-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/server/
DoPrinterDelete.java 139 String lh = h.getLocalHostName(); local
140 if (lh.equals(nshost)) {
DoPrinterAdd.java 358 String lh = h.getLocalHostName(); local
359 if (lh.equals(nshost))
DoPrinterMod.java 687 String lh = h.getLocalHostName(); local
688 if (lh.equals(nshost))
DoPrinterNS.java 150 String lh = h.getLocalHostName(); local
151 if (lh.equals(nshost)) {
563 String lh = h.getLocalHostName(); local
565 if (lh.equals(nm)) {
624 String lh = h.getLocalHostName(); local
626 int ret = dorexec(lh, "root", p, "/usr/bin/echo", "C");
  /onnv/onnv-gate/usr/src/common/openssl/crypto/engine/
eng_table.c 105 LHASH *lh; local
108 if((lh = lh_new(LHASH_HASH_FN(engine_pile_hash),
111 *t = (ENGINE_TABLE *)lh;
  /onnv/onnv-gate/usr/src/uts/common/io/
l_strplumb.c 222 ldi_handle_t lh; local
230 kcred, &lh, li);
238 kcred, &lh, li);
254 error = ldi_ioctl(lh, SAD_GAP, (intptr_t)&push,
259 (void) ldi_close(lh, FREAD|FWRITE, kcred);
290 (void) ldi_close(lh, FREAD|FWRITE, kcred);
300 error = ldi_ioctl(lh, SAD_SAP, (intptr_t)&push,
306 (void) ldi_close(lh, FREAD|FWRITE, kcred);
339 error = ldi_ioctl(lh, SAD_SAP, (intptr_t)&push,
345 (void) ldi_close(lh, FREAD|FWRITE, kcred)
    [all...]
strplumb.c 292 getifflags(ldi_handle_t lh, struct lifreq *lifrp)
302 return (ldi_ioctl(lh, I_STR, (intptr_t)&iocb, FKIOCTL, CRED(), &rval));
307 setifname(ldi_handle_t lh, struct lifreq *lifrp)
317 return (ldi_ioctl(lh, I_STR, (intptr_t)&iocb, FKIOCTL, CRED(), &rval));
323 ldi_handle_t lh = NULL; local
357 &lh, li)) != 0) {
364 if ((err = ldi_ioctl(lh, I_PUSH, (intptr_t)IP, FKIOCTL, CRED(),
370 if ((err = getifflags(lh, &lifr)) != 0)
389 if ((err = setifname(lh, &lifr)) != 0)
393 if ((err = getifflags(lh, &lifr)) != 0)
654 ldi_handle_t lh; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/mdb/common/modules/genunix/
ldi.c 310 struct ldi_handle lh; local
314 if (mdb_vread(&lh, sizeof (struct ldi_handle), addr) == -1) {
324 mdb_printf("%4u ", lh.lh_ref);
327 mdb_printf("%0?p ", lh.lh_vp);
330 addr = (uintptr_t)lh.lh_vp;
347 if (lh.lh_events != NULL) {
348 mdb_printf("%0?p ", lh.lh_events);
355 mdb_printf("%0?p\n", lh.lh_ident);
360 return (ldi_ident_print((uintptr_t)lh.lh_ident, refs));
  /onnv/onnv-gate/usr/src/common/openssl/crypto/txt_db/
txt_db.c 198 LHASH *lh; local
205 lh=db->index[idx];
206 if (lh == NULL)
211 ret=(char **)lh_retrieve(lh,value);
  /onnv/onnv-gate/usr/src/lib/librpcsvc/common/
bootparam_prot.h 51 char lh; member in struct:ip_addr_t
  /onnv/onnv-gate/usr/src/uts/common/rpc/
bootparam.h 54 char lh; member in struct:ip_addr_t
  /onnv/onnv-gate/usr/src/uts/sun4u/excalibur/os/
excalibur.c 55 ldi_handle_t lh; member in struct:xcalfan_info
137 FWRITE, kcred, &xcalfans[i].lh, li);
279 err = ldi_write(xcalfans[i].lh, &uio, kcred);
  /onnv/onnv-gate/usr/src/cmd/iscsi/iscsitgtd/
iscsi_login.c 135 iscsi_login_hdr_t lh; local
152 if (read(c->c_fd, &lh, sizeof (lh)) != sizeof (lh)) {
158 if ((lh.opcode & ISCSI_OPCODE_MASK) != ISCSI_OP_LOGIN_CMD) {
161 c->c_num, lh.opcode, ISCSI_OP_LOGIN_CMD);
163 send_login_reject(c, &lh,
181 info.uip_itt = lh.itt;
184 info.uip_cmdsn = ntohl(lh.cmdsn);
185 info.uip_statsn = ntohl(lh.expstatsn)
    [all...]
  /onnv/onnv-gate/usr/src/common/openssl/crypto/ec/
ec2_smpl.c 810 BIGNUM *lh, *y2; local
832 lh = BN_CTX_get(ctx);
833 if (lh == NULL) goto err;
840 if (!BN_GF2m_add(lh, &point->X, &group->a)) goto err;
841 if (!field_mul(group, lh, lh, &point->X, ctx)) goto err;
842 if (!BN_GF2m_add(lh, lh, &point->Y)) goto err;
843 if (!field_mul(group, lh, lh, &point->X, ctx)) goto err
    [all...]
  /onnv/onnv-gate/usr/src/grub/grub-0.97/stage2/
boot.c 48 struct linux_kernel_header *lh; local
96 lh = (struct linux_kernel_header *) buffer;
219 else if (lh->boot_flag == BOOTSEC_SIGNATURE
220 && lh->setup_sects <= LINUX_MAX_SETUP_SECTS)
223 int setup_sects = lh->setup_sects;
225 if (lh->header == LINUX_MAGIC_SIGNATURE && lh->version >= 0x0200)
227 big_linux = (lh->loadflags & LINUX_FLAG_BIG_KERNEL);
228 lh->type_of_loader = LINUX_BOOT_LOADER_TYPE;
237 if (lh->version >= 0x0201
814 struct linux_kernel_header *lh local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/rpcsvc/nis/rpc.nispasswdd/
rpc.nispasswdd.c 572 char *lh = nis_local_host(); local
574 if (! lh) {
582 if (strlen(lh) + strlen(NIS_SVCNAME_NISPASSWD) + 2 >
590 (void) sprintf(svc_name, "%s@%s", NIS_SVCNAME_NISPASSWD, lh);
  /onnv/onnv-gate/usr/src/uts/common/fs/zfs/
vdev_disk.c 109 ldi_handle_t lh; local
114 &lh, zfs_li) == 0) {
118 (void) ldi_close(lh, spa_mode(spa), kcred);
zap_leaf.c 452 uint16_t lh; local
457 for (lh = LEAF_HASH(l, h); lh <= bestlh; lh++) {
458 for (chunk = l->l_phys->l_hash[lh];
467 ASSERT3U(bestlh, >=, lh);
468 bestlh = lh;
  /onnv/onnv-gate/usr/src/stand/lib/fs/ufs/
lufsboot.c 195 #define inslist(lh, l) if ((*(lh))) { \
196 (*(lh))->l_prev->l_next = (l); \
197 (l)->l_next = (*(lh)); \
198 (l)->l_prev = (*(lh))->l_prev; \
199 (*(lh))->l_prev = (l); \
203 (*(lh)) = l; \
206 #define remlist(lh, l) \
208 if (*(lh) != (l) || (l)->l_prev != (l)) \
210 *(lh) = (lb_me_t *)NULL;
641 lb_me_t **lh, *l, *lnext; local
684 lb_me_t **lh, *l; local
906 lb_me_t **lh, *l, *lnext; local
1005 lb_me_t **lh, *l; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/avs/ns/solaris/
nsc_raw.c 66 ldi_handle_t lh; /* Solaris layered driver handle */ member in struct:raw_dev
381 OTYP_BLK, FREAD|FWRITE, cred, &cdi->lh, li);
384 cdi->lh = NULL;
411 if (cdi->lh)
412 (void) ldi_close(cdi->lh, FWRITE|FREAD, cred);
464 rc = ldi_close(cdi->lh, FREAD|FWRITE, cred);
  /onnv/onnv-gate/usr/src/uts/common/io/softmac/
softmac_main.c 677 ldi_handle_t lh = NULL; local
702 err = ldi_open_by_dev(&dev, OTYP_CHR, FREAD|FWRITE, kcred, &lh, li);
704 if (dl_attach(lh, softmac->smac_uppa + 1 * 1000, NULL) == 0)
706 (void) ldi_close(lh, FREAD|FWRITE, kcred);
722 if (ldi_open_by_dev(&dev, OTYP_CHR, FREAD|FWRITE, kcred, &lh,
731 while (ldi_ioctl(lh, I_POP, 0, FKIOCTL, kcred, &rval) == 0)
735 if ((rval = dl_info(lh, &dlia, NULL, NULL, &dlea)) != 0) {
742 (void) ldi_close(lh, FREAD|FWRITE, kcred);
752 (void) ldi_close(lh, FREAD|FWRITE, kcred);
758 (dl_attach(lh, softmac->smac_uppa, NULL) != 0))
1312 ldi_handle_t lh = NULL; local
    [all...]

Completed in 540 milliseconds

1 2 3