Searched refs:nc (Results 1 - 25 of 42) sorted by relevance

12

/osnet-11/usr/src/lib/libnsl/nis/gen/
H A Dnis_misc.c63 __nis_netconfig2ep(struct netconfig *nc, endpoint *ep) { argument
65 if (nc == 0 || ep == 0)
68 ep->family = strdup(nc->nc_protofmly);
71 ep->proto = strdup(nc->nc_netid);
73 ep->proto = strdup(nc->nc_proto);
78 __nis_netconfig_matches_ep(struct netconfig *nc, endpoint *ep) { argument
80 if (nc == 0 || ep == 0)
83 if (strcmp(nc->nc_protofmly, ep->family) != 0)
87 return (strcmp(nc->nc_netid, ep->proto) == 0 ||
88 strcmp(nc
[all...]
H A Dnis_subr.c670 struct netconfig *nc, /* Our transport */
686 if (strcmp(NC_UDP, nc->nc_proto) == 0) {
692 client = __nis_clnt_create(RPC_ANYFD, nc, uaddr, 0, 0,
714 parms.r_netid = nc->nc_netid; /* not needed */
731 (strcmp(nc->nc_protofmly, NC_INET) == 0)) {
749 protocol = strcmp(nc->nc_proto, NC_TCP) ?
783 __nis_clnt_create(int fd, struct netconfig *nc, char *uaddr, argument
792 if (nc == 0 || (addr == 0 && uaddr == 0)) {
801 if (__can_use_af((strcmp(nc->nc_protofmly, NC_INET6) == 0) ?
807 svc_addr = __map_addr(nc, uadd
669 __map_addr( struct netconfig *nc, char *uaddr, rpcprog_t prog, rpcvers_t ver) argument
[all...]
/osnet-11/usr/src/lib/libcurses/screen/
H A D_subpad.c49 subpad(WINDOW *win, int l, int nc, int by, int bx) argument
51 return (derwin(win, l, nc, by, bx));
H A Dnewpad.c48 newpad(int l, int nc) argument
52 pad = newwin(l, nc, 0, 0);
H A Dsubwin.c48 subwin(WINDOW *win, int l, int nc, int by, int bx) argument
50 return (derwin(win, l, nc, by - win->_begy, bx - win->_begx));
H A Dderwin.c51 * nl, nc: numbers of lines and columns
57 derwin(WINDOW *orig, int num_lines, int nc, int by, int bx) argument
68 (bx + nc) > orig->_maxx)
70 if (nc == 0)
71 nc = orig->_maxx - bx;
76 if ((win = _makenew(num_lines, nc, by + orig->_begy,
H A Dstart_col.c107 int i, nc; local
114 nc = (COLS / BITSPERBYTE) + (COLS % BITSPERBYTE ? 1 : 0);
115 if ((*marks = (char *)calloc((unsigned)nc * LINES,
126 *(marks + 1) = *marks + nc;
H A Dmbaddch.c149 int n, x, y, nc, m, len, nbyte, ty; local
156 nc = 0;
159 rc[nc++] = (char)(LBYTE(c)|MBIT);
162 rc[nc++] = (char)RBYTE(c);
167 for (n = 0; n < nc; ++n) {
H A Dnewscreen.c230 int i, nc; local
237 nc = (COLS / BITSPERBYTE) + (COLS % BITSPERBYTE ? 1 : 0);
238 if ((*marks = (char *)calloc((unsigned)nc * LINES,
242 *(marks + 1) = *marks + nc;
/osnet-11/usr/src/lib/libfsmgt/common/
H A Dnfs_netcfg.c49 NCONF_HANDLE *nc; local
56 if ((nc = setnetconfig()) == (NCONF_HANDLE *)NULL) {
62 while (nconf = getnetconfig(nc)) {
74 (void) endnetconfig(nc);
85 (void) endnetconfig(nc);
92 (void) endnetconfig(nc);
/osnet-11/usr/src/lib/libxcurses/src/tabs/
H A Dtabs.c158 STATREF void mvcol ANSI((int oc, int nc));
301 int nc = 0; local
325 nc = (int) wcstol(p, &p, 0);
326 if (p == tablist || nc < 0) {
331 set_every(nc);
335 if (nc <= oc) {
344 oc = nc;
345 set_tab_at(nc);
346 nc = (int) wcstol(p, &p, 0);
347 } while (nc !
[all...]
/osnet-11/usr/src/lib/libnsl/rpc/
H A Dauth_time.c126 struct netconfig *nc; local
136 while (nc = getnetconfig(nch)) {
137 if ((nc->nc_flag & NC_VISIBLE) == 0)
139 if (! netdir_getbyname(nc, &hs, &addrs)) {
143 taddr2uaddr(nc, &(addrs->n_addrs[i]));
144 __nis_netconfig2ep(nc, &(eps[num_ep]));
192 struct netconfig *nc; /* Various handles */ local
217 nc = NULL;
264 while ((nc = getnetconfig(nc_handle)) != NULL) {
267 if ((nc
[all...]
H A Dclnt_generic.c695 struct netconfig *nc; local
697 if ((nc = __rpcfd_to_nconf(fd, servtype)) != NULL) {
698 if (nc->nc_netid) {
699 cl->cl_netid = strdup(nc->nc_netid);
710 if (nc->nc_device) {
711 cl->cl_tp = strdup(nc->nc_device);
724 freenetconfigent(nc);
/osnet-11/usr/src/lib/libnisdb/
H A Dldap_scheme.c76 int na, i, nc; local
91 nc = t->numColumns;
95 nc = 1;
117 if (index >= nc) {
120 myself, index, nc);
H A Dldap_attr.c193 int nc = 0, s, e, i; local
230 new = realloc(comp, (nc+1) * sizeof (comp[nc]));
233 for (i = 0; i < nc; i++)
238 nc = 0;
242 comp[nc] = sdup(myself, T, &str[s]);
243 if (comp[nc] == 0) {
244 for (i = 0; i < nc; i++)
248 nc = 0;
251 nc
[all...]
H A Dldap_nisdbquery.c839 int nc, i; local
843 nc = e->en_cols.en_cols_len - 1;
845 if (e == 0 || nc < 0 || nc > NIS_MAXCOLUMNS)
869 if (nc == 0)
872 qcbuf = am(myself, nc * sizeof (*qcbuf));
885 qbuf->components.components_len = nc;
886 for (i = 0; i < nc; i++) {
/osnet-11/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dmvcur.c175 simp_col(struct Sequence *outseq, int oc, int nc) argument
183 if (oc == nc)
190 if (oc < nc) {
194 /* Tabstop preceding nc. */
195 tabstop = nc / init_tabs;
199 /* Set oc to tabstop before nc : oc <= nc. */
202 /* Distance from next tabstop to nc in columns. */
203 tabstop = init_tabs - nc % init_tabs;
206 dist = nc
[all...]
/osnet-11/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dmvcur.c176 simp_col(outseq, oc, nc)
178 int oc, nc;
186 if (oc == nc)
193 if (oc < nc) {
197 /* Tabstop preceding nc. */
198 tabstop = nc / init_tabs;
202 /* Set oc to tabstop before nc : oc <= nc. */
205 /* Distance from next tabstop to nc in columns. */
206 tabstop = init_tabs - nc
[all...]
/osnet-11/usr/src/lib/libsmb/common/
H A Dsmb_nic.c404 smb_nic_t *nc; local
431 nc = smb_niclist.nl_nics;
437 if (smb_nic_getinfo(ifname, nc, AF_INET) !=
439 if (smb_nic_getinfo(ifname, nc,
445 (void) strlcpy(nc->nic_host, iflist->if_host,
446 sizeof (nc->nic_host));
447 (void) strlcpy(nc->nic_cmnt, iflist->if_cmnt,
448 sizeof (nc->nic_cmnt));
450 smb_tonetbiosname(nc->nic_host, nc
478 smb_nic_getinfo(char *interface, smb_nic_t *nc, int family) argument
1230 smb_nic_nbt_exclude(const smb_nic_t *nc, const char **exclude_list, int nexclude) argument
[all...]
/osnet-11/usr/src/lib/libast/common/regex/
H A Dregdecomp.c87 unsigned char nc[2*UCHAR_MAX]; local
154 s = nc;
225 if ((t - ic + 1) < (s - nc + (nc[0] == '^')))
252 if (nc[0] == '^')
254 sfwrite(sp, nc + 1, s - nc - 1);
258 sfwrite(sp, nc, s - nc);
/osnet-11/usr/src/lib/librdc/common/
H A Dnetaddrs.c523 NCONF_HANDLE *nc = NULL; local
545 if ((nc = setnetpath()) == NULL)
553 while (nconf = getnetpath(nc)) {
586 while (nconf = getnetpath(nc)) {
610 endnetpath(nc);
611 if ((nc = setnetpath()) == NULL)
650 if (nc)
651 endnetpath(nc);
/osnet-11/usr/src/lib/libadr/common/
H A Dadr_name.c432 char c, nc; local
436 while (nc = c = *src++) {
439 nc = 'S';
442 nc = 'C';
445 nc = 'E';
449 if (nc != c)
451 *dst++ = nc;
/osnet-11/usr/src/cmd/perl/contrib/Sun/Solaris/Lgrp/t/
H A DLgrp_api.t320 my $nc = 0;
324 $nc += @cpu_l;
327 is($nc, $ncpus, 'Number of CPUs should match');
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/x2p/
H A Ds2p.PL975 my $nc = peek($pat,$ic);
976 if( $nc eq '' ){
981 if( $nc eq $del ){ ## \<pattern del> => \<pattern del>
984 } elsif( $nc =~ /([[.*\\n])/ ){
987 $res .= '\\'.$nc;
989 } elsif( $nc eq '(' ){ ## \( => (
993 } elsif( $nc eq ')' ){ ## \) => )
1002 } elsif( $nc eq '{' ){ ## repetition factor \{<i>[,[<j>]]\}
1041 } elsif( $nc =~ /^[1-9]$/ ){
1043 if( $nc >
[all...]
/osnet-11/usr/src/lib/libdtrace/common/
H A Ddt_provider.c240 int i, nc, xc; local
252 for (nc = -1, i = 0; i < adc; i++, adp++) {
265 nc = MAX(nc, adp->dtargd_mapping);
269 nc++;
277 nargs = dt_probe_alloc_args(pvp, nc);
279 if ((xc != 0 && xargs == NULL) || (nc != 0 && nargs == NULL))
292 nargs, nc, xargs, xc)) == NULL) {

Completed in 82 milliseconds

12