| /onnv/onnv-gate/usr/src/cmd/lp/lib/requests/ |
| llib-llpreq | 37 typedef struct REQUEST { 38 short copies; /* number of copies of request to print */ 45 short priority; /* priority level, 0-39, of the request */ 54 } REQUEST; 56 REQUEST * getrequest ( char * ); 57 int putrequest ( char *, REQUEST * ); 58 void freerequest ( REQUEST * );
|
| freerequest.c | 41 ** freerequest() - FREE STRUCTURE ALLOCATED FOR A REQUEST STRUCTURE 47 REQUEST * reqbufp 51 register REQUEST *reqbufp;
|
| getrequest.c | 49 ** getrequest() - EXTRACT REQUEST STRUCTURE FROM DISK FILE 52 REQUEST * 62 REQUEST *reqp;
|
| putrequest.c | 49 ** putrequest() - WRITE REQUEST STRUCTURE TO DISK FILE 56 REQUEST * reqbufp 61 REQUEST *reqbufp; 88 * Now open the file and write out the request.
|
| /onnv/onnv-gate/usr/src/cmd/lp/include/ |
| requests.h | 36 ** The disk copy of the request files: 40 * There are 18 fields in the request file. 62 ** The internal copy of a request as seen by the rest of the world: 69 typedef struct REQUEST { 70 short copies; /* number of copies of request to print */ 77 short priority; /* priority level, 0-39, of the request */ 85 } REQUEST; 96 #define ACT_RESUME 0x0030 /* resume a held request */ 114 #define RS_CHANGING 0x0020 /* request held pending user change */ 115 #define RS_CANCELLED 0x0040 /* request was cancelled * [all...] |
| /onnv/onnv-gate/usr/src/lib/libeti/form/common/ |
| driver.c | 41 } REQUEST; 43 static REQUEST parse(int); 49 static REQUEST carray [MAX_FORM_COMMAND - MIN_FORM_COMMAND + 1] = 117 static REQUEST FAIL = { (PTF_int) 0, (PTF_int) 0 }; 119 /* _page_navigation - service page navigation request */ 137 /* _field_navigation - service inter-field navigation request */ 153 /* _data_navigation - service intra-field navagation request */ 160 /* _data_manipulation - service data modification request */ 183 REQUEST x; 211 static REQUEST [all...] |
| /onnv/onnv-gate/usr/src/cmd/lp/lib/papi/ |
| papi_impl.h | 74 REQUEST *request; member in struct:__anon745 81 extern void lpsched_request_to_job(REQUEST *r, job_t *j); 112 REQUEST *r, papi_attribute_t **attributes); 133 extern void lpsched_request_to_job_attributes(REQUEST *r, job_t *j);
|
| lpsched-misc.c | 107 REQUEST *request = NULL; local 126 if ((request = getrequest(path)) != NULL) 127 result = request->destination; 132 if (request != NULL) 133 freerequest(request);
|
| job.c | 115 static REQUEST * 118 REQUEST *r; 150 REQUEST *r; 226 * When the request is sent from 486 REQUEST *request; local 529 request = create_request(svc, (char *)printer, 541 freerequest(request); 544 addlist(&(request->file_list), lpfile); 566 if (putrequest(lpfile, request) < 0) 605 REQUEST *request; local 1165 REQUEST *request; local [all...] |
| lpsched-jobs.c | 42 job_attributes_to_lpsched_request(papi_service_t svc, REQUEST *r, 297 * Convert REQUEST->outcome (or R_REQUEST_* state) to the equivalent 389 * Convert REQUEST structure to the equivalent PAPI attribute representation. 392 lpsched_request_to_job_attributes(REQUEST *r, job_t *j) 508 "lpsched-request-id", req_id); 526 REQUEST *r;
|
| /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.lib/in.dhcpd/ |
| README.caching | 116 DISCOVER, REQUEST, RELEASE, or DECLINE. 145 For a REQUEST: 147 1. If the REQUEST is a reply to a previous OFFER, it checks if the 150 address cannot be confirmed to still be free, the REQUEST is 154 2. If the REQUEST is associated with a client INIT-REBOOT or a client
|
| generic.c | 122 * For BOOTP, REQUEST, RELEASE, and INFORM packets, trust client's 129 (*plp->opts[CD_DHCP_TYPE]->value == REQUEST ||
|
| /onnv/onnv-gate/usr/src/uts/common/netinet/ |
| dhcp.h | 208 #define REQUEST ((uint8_t)3) 219 #define BOOTREQUEST (1) /* BOOTP REQUEST opcode */
|
| /onnv/onnv-gate/usr/src/cmd/lp/cmd/lpsched/ |
| lpsched.h | 164 * validate_request() - VERIFY REQUEST CAN BE PRINTED 165 * evaluate_request() - TRY REQUEST ON A PARTICULAR PRINTER 166 * reevaluate_request() - TRY TO MOVE REQUEST TO ANOTHER PRINTER 179 * Request is ready to be slow-filtered: 182 ((PRS)->slow && !((PRS)->request->outcome & RS_FILTERED)) 231 extern void GetRequestFiles(REQUEST *req, char *buffer, int length); 239 REQUEST * Getrequest ( char * ); 337 extern RSTATUS *new_rstatus(REQUEST *, SECURE *);
|
| nodes.h | 68 RSTATUS *request; member in union:exec_node::ex 76 #define EX_SLOWF 2 /* exec slow filter for ex.request */ 80 #define EX_NOTIFY 6 /* exec notification for ex.request */ 119 RSTATUS *request; member in struct:pstat_node 171 REQUEST *request; member in struct:rstat_node
|
| init.c | 137 REQUEST *r; 165 syslog(LOG_DEBUG, "Loaded request: %s", reqfile); 194 * user, is if the request was cancelled. This is because 195 * cancelling a request does not cause the creation of the 196 * message if the request is currently printing or filtering. 219 * MNODEST, then the printer for the request doesn't exist 220 * anymore! E.g. lpadmin -x was issued, and the request
|
| fncs.c | 399 if (rsp->request != NULL) 400 freerequest(rsp->request); 428 new_rstatus(REQUEST *r, SECURE *s) 433 if ((result->request = r) == NULL) 434 result->request = calloc(1, sizeof (REQUEST)); 678 REQUEST * 681 register REQUEST *ret; 767 ** getreqno() - GET NUMBER PART OF REQUEST ID 783 /* Putsecure(): Insurance for writing out the secure request file [all...] |
| disp1.c | 87 REQUEST *r; 105 * "NewRequest" points to a request that's not yet in the 106 * request list but is to be considered with the rest of the 126 freerequest(rp->request); 127 rp->request = r; 129 rp->request->outcome = 0; 145 if ((rp->request->actions & ACT_SPECIAL) == ACT_HOLD) 146 rp->request->outcome |= RS_HELD; 147 if ((rp->request->actions & ACT_SPECIAL) == ACT_RESUME) 148 rp->request->outcome &= ~RS_HELD [all...] |
| /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.lib/in.dhcpd/tests/ |
| test_client.c | 89 static PKT request; variable 134 case REQUEST: 135 p = "REQUEST"; 270 (void) memcpy(&crequest, &request, sizeof (request)); 365 if (mep->state == REQUEST && expired < time(NULL)) { 393 /* Send request... */ 400 /* Randomly corrupt entire request. */ 567 mep->state = REQUEST; 574 optp->value[0] = REQUEST; [all...] |
| /onnv/onnv-gate/usr/src/cmd/cmd-inet/sbin/dhcpagent/ |
| init_reboot.c | 70 dpkt = init_pkt(dsmp, REQUEST); 182 /* Add required Option Request option */ 267 dhcpmsg(MSG_INFO, "no ACK/NAK to INIT_REBOOT REQUEST, "
|
| renew.c | 114 * that's there, then try to renew by sending an extension request. If 219 * that's there, then try to rebind by sending an extension request. 396 * dhcp_extending(): sends a REQUEST (IPv4 DHCP) or Rebind/Renew (DHCPv6) to 400 * output: boolean_t: B_TRUE if the extension request was sent 423 dhcpmsg(MSG_DEBUG, "dhcp_extending: sending request on %s", 462 /* Add required Option Request option */ 472 dpkt = init_pkt(dsmp, REQUEST); 505 * stop_extending(): decides when to stop retransmitting v4 REQUEST or v6
|
| packet.c | 248 * DISCOVER/REQUEST. If the client is already 253 if (type == DISCOVER || (type == REQUEST && 581 * add_pkt_prl(): adds the parameter request option to the packet 584 * dhcp_smach_t *: state machine with request option 601 * have nothing to request. 734 * In all other cases (RELEASE and REQUEST), we need to set 826 * successful in sending the request, independent of whether 866 * REQUEST: if in the REQUESTING state, then same value as 871 * REQUEST or DISCOVER packet, so we know the lease start 889 case REQUEST [all...] |
| /onnv/onnv-gate/usr/src/cmd/lp/cmd/lpadmin/ |
| do_align.c | 100 REQUEST req; 131 * Construct a request to print a ``file'' for copy. The 155 req.charset = NAME_ANY; /* Don't restrict the request */ 180 * set as above. If the request gets refused because there's 194 * Have the Spooler allocate a request file and another file 249 * - submit the request, 252 * We want to minimize the window when another request can 255 * help, because it will stop any request that is printing 257 * request from printing. (We disable the printer AFTER trying 379 * Because of our precautions above, our request SHOULD b [all...] |
| /onnv/onnv-gate/usr/src/stand/lib/inet/ |
| dhcpv4.c | 61 static uint8_t opt_request[] = { CD_DHCP_TYPE, 1, REQUEST }; 104 * Parameter request list. 110 * This parameter request list is used in the normal 4-packet 111 * DHCPDISCOVER/OFFER/REQUEST/ACK exchange; it must not contain 115 CD_REQUEST_LIST, /* parameter request list option number */ 150 * DISCOVER/REQUEST. 152 if ((type == DISCOVER) || (type == REQUEST)) 1196 dprintf("%s: Request timed out.\n", s_n);
|
| /onnv/onnv-gate/usr/src/cmd/cmd-crypto/elfsign/ |
| elfsign.c | 61 #define REQUEST "request" 86 enum cmd_e cmd; /* sub command: sign | verify | request */ 95 char internal_req; /* Sun internal certificate request */ 191 } else if (strcmp(scmd, REQUEST) == 0) { 194 cryptodebug("cmd=request opts=%s", opts); 393 "\telfsign request -r <certificate_request_file> -k <private_key_file>" 395 "\telfsign request -r <certificate_request_file> -T <token_label>" 675 * Generate the elfsign activation file (.esa) for this request. [all...] |