Searched refs:level (Results 351 - 375 of 774) sorted by relevance

<<11121314151617181920>>

/illumos-gate/usr/src/uts/common/inet/sockmods/
H A Dsocksdp.c651 sosdp_getsockopt(struct sonode *so, int level, int option_name, argument
664 if (level == SOL_SOCKET) {
763 level, option_name, optbuf, &optlen);
798 sosdp_setsockopt(struct sonode *so, int level, int option_name, argument
816 so->so_type, conn, level, option_name));
820 error = sdp_set_opt((struct sdp_conn_struct_t *)conn, level,
831 if (level == SOL_SOCKET) {
H A Dsocksctp.c1223 sosctp_getsockopt(struct sonode *so, int level, int option_name, argument
1233 if (level == SOL_SOCKET) {
1242 error = socket_getopt_common(so, level, option_name,
1251 if (level == IPPROTO_SCTP) {
1267 error = sctp_get_opt((struct sctp_s *)so->so_proto_handle, level,
1294 sosctp_setsockopt(struct sonode *so, int level, int option_name, argument
1306 * For some SCTP level options, one can select the association this
1316 if (level == IPPROTO_SCTP) {
1352 } else if (level == SOL_SOCKET) {
1360 * The other socket level option
[all...]
/illumos-gate/usr/src/uts/common/inet/tcp/
H A Dtcp_socket.c373 tcp_getsockopt(sock_lower_handle_t proto_handle, int level, int option_name, argument
384 error = proto_opt_check(level, option_name, *optlen, &max_optbuf_len,
403 len = tcp_opt_get(connp, level, option_name, optvalp_buf);
424 tcp_setsockopt(sock_lower_handle_t proto_handle, int level, int option_name, argument
436 if (level == IPPROTO_TCP) {
456 error = proto_opt_check(level, option_name, optlen, NULL,
469 error = tcp_opt_set(connp, SETFN_OPTCOM_NEGOTIATE, level, option_name,
/illumos-gate/usr/src/stand/lib/sock/
H A Dsocket.c184 getsockopt(int s, int level, int option, void *optval, socklen_t *optlen) argument
192 switch (level) {
264 } /* switch (level) */
305 setsockopt(int s, int level, int option, const void *optval, socklen_t optlen) argument
313 switch (level) {
349 level, option, optval, optlen);
360 level, option, optval, optlen);
370 level, option, optval, optlen);
393 } /* switch (level) */
445 /* Call lower level protoco
[all...]
/illumos-gate/usr/src/cmd/fs.d/nfs/lib/
H A Dnfs_tbind.c128 static int setopt(int fd, int level, int name, int value);
129 static int get_opt(int fd, int level, int name);
423 opt->level = IPPROTO_TCP;
451 get_opt(int fd, int level, int name) argument
459 reqbuf.opt.level = level;
480 setopt(int fd, int level, int name, int value) argument
488 reqbuf.opt.level = level;
/illumos-gate/usr/src/lib/print/mod_ipp/
H A Dmod_ipp.c180 void _log_rerror(const char *file, int line, int level, request_rec *r, argument
198 ap_log_rerror(file, line, level, APR_SUCCESS, r, message);
200 ap_log_rerror(file, line, level, r, message);
294 * service to retrieve the sensativity label off of a multi-level
/illumos-gate/usr/src/lib/efcode/engine/
H A Denv.c232 int level; member in struct:CMN_MSG_T
690 log_message(root->level, "%s\n", root->buf);
734 new->level = cmn_msg_level;
/illumos-gate/usr/src/lib/libwrap/
H A Doptions.c564 char *level = split_at(value, '.'); local
566 allow_severity = deny_severity = level ?
567 severity_map(log_fac, value) | severity_map(log_sev, level) :
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/telnet/
H A Dkerberos5.c497 kerberos5_status(Authenticator *ap, char *name, int level) argument
499 if (level < AUTH_USER)
500 return (level);
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/inetd/
H A Dtlx.c257 tlx_setsockopt(int fd, int level, int optname, const void *optval, argument
271 optbuf.sockopt.level = level;
/illumos-gate/usr/src/cmd/mdb/intel/modules/mdb_kb/
H A Dmdb_kb.c523 * Return the MFN of the top-level page table for the given as.
760 xkb_pte_to_base_mfn(uint64_t pte, size_t level) argument
762 if (PTE_IS_LGPG(pte, level)) {
772 * Resolve the given VA into an MFN, using the provided mfn as a top-level page
780 size_t level; local
782 for (level = mmu->mi_max; ; --level) {
785 if (xkb_map_mfn(xkb, mfn, &xkb->xkb_pt_map[level]) == NULL)
788 entry = (va >> mmu->mi_shift[level]) & (mmu->mi_ptes - 1);
790 pte = xkb_get_pte(mmu, (char *)xkb->xkb_pt_map[level]
[all...]
/illumos-gate/usr/src/cmd/rpcsvc/rpc.bootparamd/
H A Dbootparam_ip_route.c92 req->level = MIB2_IP; /* any MIB2_xxx value ok here */
106 * containing an opthdr structure. level/name identify the entry,
117 msgout("# level name len");
135 "(level %lu, name %lu)",
136 j, req->level, req->name);
176 last_item->group = req->level;
/illumos-gate/usr/src/uts/common/io/softmac/
H A Dsoftmac_ctl.c89 softmac_send_promisc_req(softmac_lower_t *slp, t_uscalar_t level, boolean_t on) argument
111 ((dl_promiscon_req_t *)reqmp->b_rptr)->dl_level = level;
113 ((dl_promiscoff_req_t *)reqmp->b_rptr)->dl_level = level;
/illumos-gate/usr/src/uts/common/sys/scsi/adapters/
H A Dscsi_vhci.h93 #define VHCI_DEBUG(level, stmnt) \
94 if (vhci_debug >= (level)) vhci_log stmnt
98 #define VHCI_DEBUG(level, stmnt)
/illumos-gate/usr/src/uts/i86pc/os/
H A Dddi_impl.c485 int level = *in++; local
488 if (level < 1 || level > MAXIPL ||
492 DEVI(child)->devi_instance, level, vec);
495 new->intrspec_pri = level;
538 int level; local
542 level = 5;
544 level = *inpri++;
546 if (level < 1 || level > MAXIP
[all...]
/illumos-gate/usr/src/lib/smbsrv/libmlsvc/common/
H A Dsamr_svc.c1220 if (!SAMR_VALID_DISPLEVEL(param->level)) {
1225 if (!SAMR_SUPPORTED_DISPLEVEL(param->level)) {
1295 param->users.switch_value = param->level;
1310 param->users.switch_value = param->level;
1620 switch (param->level) {
1622 param->ru.info1.level = param->level;
1631 param->ru.info2.level = param->level;
1637 param->ru.info3.level
[all...]
/illumos-gate/usr/src/boot/sys/ufs/ffs/
H A Dfs.h99 * The filesystem records space availability at the fragment level;
154 * blocks which may be free. If the freelist drops below this level
628 * an unusual bit order to determine level.
651 lbn_offset(struct fs *fs, int level) argument
655 for (res = 1; level > 0; level--)
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Ddmu_tx.c162 dmu_tx_check_ioerr(zio_t *zio, dnode_t *dn, int level, uint64_t blkid) argument
168 db = dbuf_hold_level(dn, level, blkid, FTAG);
179 int level, uint64_t blkid, boolean_t freeable, uint64_t *history)
188 if (level >= dn->dn_nlevels || history[level] == blkid)
191 history[level] = blkid;
193 space = (level == 0) ? dn->dn_datablksz : (1ULL << dn->dn_indblkshift);
196 ASSERT(level != 0);
200 ASSERT(db->db_level == level);
223 dmu_tx_count_twig(txh, dn, parent, level
178 dmu_tx_count_twig(dmu_tx_hold_t *txh, dnode_t *dn, dmu_buf_impl_t *db, int level, uint64_t blkid, boolean_t freeable, uint64_t *history) argument
594 int level = 2; local
[all...]
/illumos-gate/usr/src/uts/common/io/scsi/adapters/pmcs/
H A Dpmcs_subr.c744 int result, level, phynum; local
753 level = pptr->level;
754 if (level > 0) {
756 } else if ((level == 0) && (pptr->dtype == EXPANDER)) {
778 * If level > 0, we need to issue an SMP_REQUEST with a PHY_CONTROL
779 * function to do either a link reset or hard reset. If level == 0,
783 if (level) {
1168 int r, level = 0; local
1232 pnext_uplevel[level
3082 pmcs_set_changed(pmcs_hw_t *pwp, pmcs_phy_t *parent, boolean_t changed, int level) argument
3127 pmcs_kill_changed(pmcs_hw_t *pwp, pmcs_phy_t *parent, int level) argument
4050 pmcs_clear_expander(pmcs_hw_t *pwp, pmcs_phy_t *pptr, int level) argument
5949 pmcs_print_entry(pmcs_hw_t *pwp, int level, char *msg, void *arg) argument
7260 pmcs_lock_phy_impl(pmcs_phy_t *phyp, int level) argument
7334 pmcs_unlock_phy_impl(pmcs_phy_t *phyp, int level) argument
[all...]
/illumos-gate/usr/src/lib/libbsm/
H A DxmlHandlers.pm34 $level = -1;
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/in.ripngd/
H A Dtables.c84 log_change(int level, struct rt_entry *orig, struct rt_entry *new) argument
96 syslog(level, "\tdst %s from gw %s if %s to gw %s if %s metric %d",
106 log_single(int level, struct rt_entry *rt) argument
114 syslog(level, "\tdst %s gw %s if %s metric %d",
/illumos-gate/usr/src/cmd/acct/
H A Dacctprc.c155 void print_node(const void *node, VISIT order, int level) { argument
/illumos-gate/usr/src/cmd/streams/log/
H A Dstrace.c249 lp->seq_no, (ts+11), lp->ltime, lp->level,
/illumos-gate/usr/src/cmd/listen/
H A Dlslog.c204 debug(int level, char *format, ...) argument
/illumos-gate/usr/src/cmd/svc/svccfg/
H A Dsvccfg_tmpl.c101 * global service and restarter that is declared at the service level. The
132 * property is defined at only one level, the tree will hold the property_t
133 * for that level. Thus, the tree is truly a set of composed properties of
449 TL_NOLEVEL = 0, /* No level yet specified. */
467 tmpl_level_t pgi_level; /* Current level */
644 * the tree with properties from the instance level property group. Then,
645 * we'll add the properties from the service level property group.
2311 * End of the list in the current level. Move up to the next
2312 * level.
2341 /* Go process the next level
2406 target_check(const char *target, tmpl_level_t level) argument
2451 pg_target_check(pgroup_t *pg_pattern, tmpl_level_t level) argument
2773 tmpl_scan_general(entity_t *general, uu_avl_t *tree, tmpl_level_t level, tmpl_errors_t *errs) argument
[all...]

Completed in 121 milliseconds

<<11121314151617181920>>