| /onnv/onnv-gate/usr/src/cmd/fmli/oh/ |
| ott_mv.c | 64 char source[PATHSIZ], destination[PATHSIZ]; local 127 strcpy(destination, path); 129 strcpy(destination, Cur_ott->path); 130 pathlen = strlen(destination); 131 destination[pathlen++] = '/'; 134 strcpy(destination + pathlen, newnames[i]); 136 _debug(stderr, "access of destination %s checked\n", destination); 138 if (access(destination, 04) != -1) 142 /** get the destination ott if it is not the same as the curren [all...] |
| /onnv/onnv-gate/usr/src/cmd/tic/ |
| tic_main.c | 98 char *destination = SRCDIR; variable 180 destination = env; 183 DEBUG(1, "Would be working in %s\n", destination); 185 DEBUG(1, "Working in %s\n", destination); 188 if (access(destination, 7) < 0) { 190 progname, destination); 194 if (chdir(destination) < 0) { 196 progname, destination); 206 * Check for access rights to the destination directory. 226 progname, destination, dir) [all...] |
| /onnv/onnv-gate/usr/src/cmd/print/bsd-sysv-commands/ |
| lpmove.c | 50 gettext("Usage: %s [request-id] (destination)\n" 51 " %s (source) (destination)\n"), name, name); 77 char *destination = NULL; local 95 destination = av[--ac]; 116 if (move_job(svc, printer, id, destination) < 0) 123 destination); 170 "destination %s is not accepting"\ 187 id, destination) < 0) 195 count, printer, destination);
|
| lpc.c | 59 char *destination = args[1]; local 61 status = papiPrinterQuery(svc, destination, pattrs, NULL, &p); 67 printf("%s:\n", destination); 84 (void) papiPrinterListJobs(svc, destination, NULL, 98 fprintf(stderr, "%s: %s\n", destination, 112 char *destination = args[1]; local 114 if (destination == NULL) { 115 fprintf(stderr, gettext("Usage: abort (destination)\n")); 119 status = papiPrinterPause(svc, destination, "paused via lpc abort"); 122 destination); 136 char *destination = args[1]; local 167 char *destination = args[1]; local 188 char *destination = args[1]; local 220 char *destination = args[1]; local 241 char *destination = args[1]; local 262 char *destination = args[1]; local [all...] |
| lpstat.c | 106 printf(gettext("no system default destination\n")); 782 char *destination = "unknown"; local 942 "job-printer-uri", &destination); 944 "printer-name", &destination); 977 printf(gettext(" on %s"), destination); 991 "output-device-assigned", &destination); 992 printf("\n\t assigned %s", destination); [all...] |
| /onnv/onnv-gate/usr/src/cmd/tcpd/ |
| environ.c | 104 char *destination; local 124 destination = (envp != 0 && strlen(*envp) >= l_nameval) ? 126 if (destination == 0) 128 strncpy(destination, name, l_name); 129 destination[l_name] = '='; 130 strcpy(destination + l_name + 1, value); 131 return ((envp == 0) ? addenv(destination) : (*envp = destination, 0));
|
| /onnv/onnv-gate/usr/src/lib/libxcurses/src/tic/ |
| ticmain.c | 55 char *destination = M_TERMINFO_DIR; variable 116 * Check for access rights to destination directories 135 destination = s; 136 if (access(destination, 7) < 0) { 137 (void) eprintf(m_strmsg(dst_err), destination); local 140 if (chdir(destination) < 0) { 141 (void) eprintf(m_strmsg(dst_err), destination); local 150 (void) eprintf(m_strmsg(dstdir_err), destination, dir); local 153 (void) eprintf(m_strmsg(dstdir_err), destination, dir); local
|
| /onnv/onnv-gate/usr/src/cmd/lp/cmd/lpsched/ |
| disp4.c | 44 char *destination; local 49 getmessage (m, S_ACCEPT_DEST, &destination); 51 (destination ? destination : "NULL")); 54 * Have we seen this destination as a printer? 56 if ((pps = search_pstatus(destination))) 67 * Have we seen this destination as a class? 69 else if ((pcs = search_cstatus(destination))) 93 char *destination, local 100 getmessage (m, S_REJECT_DEST, &destination, &reason) 177 char *destination, local [all...] |
| disp1.c | 523 STREQU(oldr.destination, r->destination); 596 char *dest = strdup(r->destination); 678 if (*s_dest && !STREQU(s_dest, crp->request->destination)) 752 char *destination; local 758 (void) getmessage(m, S_CANCEL, &destination, &user, &req_id); 760 (destination ? destination : "NULL"), (user ? user : "NULL"), 763 if (STREQU(destination, NAME_ALL)) 764 destination = "" [all...] |
| /onnv/onnv-gate/usr/src/cmd/lp/model/netpr/ |
| netpr.c | 165 char *destination = NULL; local 357 * Parse destination 362 parse_dest(job_data->dest, &destination, 370 parse_dest(job_data->dest, &destination, &tcp_port, 377 if (destination == NULL || 380 gettext("Netpr: system error parsing destination %s\n"), 382 syslog(LOG_DEBUG, "system error parsing destination %s", 389 destination = job_data->dest; 391 syslog(LOG_DEBUG, "destination : %s", destination); [all...] |
| /onnv/onnv-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/server/ |
| Valid.java | 270 // Valid destination 272 public static boolean destination(String d) method in class:Valid 274 Debug.message("SVR: Valid.destination()"); 275 Debug.message("SVR: destination=" + d);
|
| DoPrinterAdd.java | 128 String destination = p.getDestination(); local 142 // specified in the destination. 145 device = destination; 146 destination = null; 164 if (destination != null) 181 if (destination != null) 182 cmd = cmd.concat(" -o dest=" + destination);
|
| DoPrinterMod.java | 144 String destination = null; local 199 destination = p.getDestination(); 278 (destination == null) && 320 (destination == null) && 383 // Do some slight of hand to deal with overloading of destination 389 if (destination != null) 390 device = destination; 393 destination = null; 446 // destination is overloaded to hold uri device for network printers 447 // if the protocol is uri, don't set either destination or protoco [all...] |
| Test.java | 44 * destination= 106 String destination = getToken(o, "destination="); local 213 p.setDestination(destination);
|
| DoPrinterView.java | 187 String destination = null; local 283 // If we have Options then look for destination and protocol. 298 destination = str.substring(i, j); 299 destination = destination.trim(); 419 destination = device; 436 p.setDestination(destination);
|
| Printer.java | 51 private String destination = null; field in class:Printer 357 destination = arg; 449 return (destination);
|
| /onnv/onnv-gate/usr/src/uts/sparc/krtld/ |
| kobj_reloc.c | 163 Addr value, destination; local 180 destination = baseaddr; 187 if (mp->destination) { 195 destination = (Addr)mp->destination + 245 off += destination; 312 if (mp->destination)
|
| /onnv/onnv-gate/usr/src/cmd/lp/include/ |
| requests.h | 71 char *destination; /* printer or class name */ member in struct:REQUEST
|
| /onnv/onnv-gate/usr/src/uts/common/sys/ |
| kobj.h | 91 reloc_dest_t destination; member in struct:module
|
| /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.bin/rdist/ |
| server.c | 47 char destination[RDIST_BUFSIZ]; /* base destination directory name */ variable 230 * destdir = 1 if destination should be a directory 231 * (i.e., more than one source is being copied to the same destination). 281 * Pass the destination file/directory name to remote. 299 strcpy(destination, rname); 301 strcpy(destination, dest); 582 target : strsub(source, destination, target)); [all...] |
| /onnv/onnv-gate/usr/src/lib/smbsrv/libsmbns/common/ |
| smbns_netbios_name.c | 50 * The destination address is normally either the IP broadcast address or 186 struct name_entry *destination; local 200 destination = answer->name; 213 addr = &destination->addr_list; 888 * Send out a name service packet to proper destination. 891 * struct netbios_name *dest -> NETBIOS name of destination 925 smb_netbios_send_rcv(int bcast, addr_entry_t *destination, 934 if ((destination->flags & ADDR_FLAG_VALID) == 0) 939 if (smb_send_name_service_packet(destination, packet) >= 0) { 940 rc = smb_netbios_process_response(tid, destination, 968 addr_entry_t *destination; local 1043 addr_entry_t *destination; local 1178 addr_entry_t *destination; local 1264 addr_entry_t *destination; local [all...] |
| /onnv/onnv-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/ |
| pmInstallPrinter.java | 71 String destination = null; field in class:pmInstallPrinter 953 destination = destText.getText(); 954 if (destination.equals("")) { 957 pmUtility.getResource("Destination.required.")); 960 if (!Valid.destination(destination)) { 963 pmUtility.getResource("Destination.invalid.")); 969 "CLNT:pmInstPr:getNetworkInfo(): destination is: " + 970 destination); 1156 if (destination != null [all...] |