HomeSort by relevance Sort by last modified time
    Searched defs:gl (Results 1 - 13 of 13) sorted by null

  /onnv/onnv-gate/usr/src/cmd/ypcmd/revnetgroup/
getgroup.c 72 struct grouplist *gl; local
74 for (gl = grouplist; gl != NULL; gl = gl->gl_nxt) {
75 FREE(gl->gl_name);
76 FREE(gl->gl_domain);
77 FREE(gl->gl_machine);
78 FREE(gl);
  /onnv/onnv-gate/usr/src/uts/sun4v/os/
mach_trap.c 169 uint32_t gl, ccr, asi, cwp, pstate; local
175 gl = (tstate >> TSTATE_GL_SHIFT) & TSTATE_GL_MASK;
180 printf(" %%gl: %02x %%ccr: %02x %%asi: %02x %%cwp: %x "
181 "%%pstate: %b\n", gl, ccr, asi, cwp, pstate, PSTATE_BITS);
185 * ptl1_gregs[] array holds global registers for GL 0 through
186 * current GL. Note that the current GL global registers are
192 printf(" %%gl: %02" PRIx64 "\n", pgp->ptl1_gl);
  /onnv/onnv-gate/usr/src/uts/common/avs/ns/sdbc/
safestore_ram.c 556 static ss_centry_info_impl_t *gl; local
582 gl = ss_ram_config.sn_gl_centry_info;
586 wentry->wc_gl_info = gl++;
  /onnv/onnv-gate/usr/src/cmd/enhance/
enhance.c 117 static int pty_stop_parent(int waserr, int cntrl, GetLine *gl, char *rbuff);
419 GetLine *gl = NULL; /* The gl_get_line() resource object */ local
425 gl = new_GetLine(PTY_MAX_LINE, PTY_HIST_SIZE);
426 if(!gl)
427 return pty_stop_parent(1, cntrl, gl, rbuff);
434 return pty_stop_parent(1, cntrl, gl, rbuff);
440 if(gl_watch_fd(gl, cntrl, GLFD_READ, pty_read_from_program, rbuff))
441 return pty_stop_parent(1, cntrl, gl, rbuff);
446 while((line=gl_get_line(gl, rbuff, NULL, 0))) {
448 return pty_stop_parent(1, cntrl, gl, rbuff)
    [all...]
  /onnv/onnv-gate/usr/src/lib/krb5/ss/
listen.c 142 GetLine *gl; local
161 gl = new_GetLine(MAX_LINE_LEN, MAX_HIST_LEN);
162 if (gl == NULL) {
179 gl = del_GetLine(gl);
186 if (gl_customize_completion(gl, &commands, cmdmatch) != 0 ) {
191 gl = del_GetLine(gl);
229 if (gl_trap_signal(gl, SIGINT, GLS_DONT_FORWARD, GLS_ABORT, NULL)) {
253 input = gl_get_line(gl, info->prompt, NULL, -1)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sgs/elfedit/common/
_elfedit.h 180 GetLine *gl; /* getline object */ member in struct:__anon52::__anon58
  /onnv/onnv-gate/usr/src/lib/nsswitch/nis/common/
getnetgrent.c 142 struct grouplist *gl; local
145 for (gl = be->all_members; gl != NULL; gl = next) {
148 next = gl->gl_nxt;
150 if (gl->triple[i] != 0) {
151 free(gl->triple[i]);
154 free(gl);
519 struct grouplist *gl; local
522 if ((gl = (struct grouplist *)malloc(sizeof (*gl))) == 0)
    [all...]
  /onnv/onnv-gate/usr/src/lib/nsswitch/nisplus/common/
getnetgrent.c 170 struct grouplist *gl; local
173 for (gl = be->all_members; gl != NULL; gl = next) {
176 next = gl->gl_nxt;
178 if (gl->triple[i] != 0) {
179 free(gl->triple[i]);
182 free(gl);
603 struct grouplist *gl; local
606 if ((gl = (struct grouplist *)malloc(sizeof (*gl))) == 0)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/ssh/sftp/
sftp.c 1316 GetLine *gl = NULL; local
1319 if ((il = gl = new_GetLine(MAX_LINE_LEN, MAX_CMD_HIST)) == NULL)
1321 if (gl_customize_completion(gl, NULL, nomatch) != 0) {
1322 (void) del_GetLine(gl);
1416 line = gl_get_line(gl, "sftp> ", NULL, -1);
1427 rtn = gl_return_status(gl);
1429 gl_abandon_line(gl);
1434 gl_error_message(gl, NULL, 0));
1462 if (gl != NULL)
1463 (void) del_GetLine(gl);
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/fs/nfs/
nfs4_xdr.c 1085 uint_t *group_length, gl; local
1092 if (!xdr_u_int(xdrs, &gl))
1096 if (pug && gl <= MAX_OG_NAME) {
1098 *group_length = gl;
1100 group_length = &gl;
1148 if (pug && gl <= MAX_OG_NAME) {
1697 uint_t *group_length, gl; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libipsecutil/common/
ipsec_util.c 75 static GetLine *gl = NULL; /* for interactive mode */ variable
478 if (gl == NULL) {
479 if ((gl = new_GetLine(MAX_LINE_LEN,
484 if (gl_customize_completion(gl, NULL,
486 (void) del_GetLine(gl);
508 if (gl != NULL)
509 (void) del_GetLine(gl);
530 line = gl_get_line(gl, prompt, NULL, -1);
531 if (gl_return_status(gl) == GLR_SIGNAL) {
532 gl_abandon_line(gl);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/zonecfg/
zonecfg.c 558 static GetLine *gl; /* The gl_get_line() resource object */ variable
    [all...]
  /onnv/onnv-gate/usr/src/lib/libtecla/common/
getline.c 292 static int gl_call_fd_handler(GetLine *gl, GlFdHandler *gfh, int fd,
295 static int gl_call_timeout_handler(GetLine *gl);
417 int ntotal; /* The number of characters in gl->line[] */
418 int buff_curpos; /* The cursor position within gl->line[] */
427 /* the current contents of gl->line[] */
649 static int gl_check_caught_signal(GetLine *gl);
655 static void gl_suspend_process(int signo, GetLine *gl, int ngl);
678 static void gl_query_size(GetLine *gl, int *ncolumn, int *nline);
684 static int gl_override_signal_handlers(GetLine *gl);
690 static int gl_restore_signal_handlers(GetLine *gl);
1726 GetLine *gl; \/* The object to be returned *\/ local
6870 GetLine *gl = (GetLine *) data; local
10590 GetLine *gl = (GetLine *) data; local
    [all...]

Completed in 3480 milliseconds