Lines Matching defs:record

46  *	_getdgrprec()		Gets a specific record from the device table
85 * recnum Record number of next record to read
99 * _getdgrptabent() returns the first record in the device table.
192 * This function gets the next record from the input stream "oam_dgroup"
193 * and puts it in the device-group table record buffer (whose address is
195 * accommodate the record, the function allocates more space to the
201 * The address of the buffer containing the record.
206 * recbufsz Current size of the record buffer
207 * xtndcnt Number of times the record buffer has been extended
223 int reclen; /* Number of chars in record */
235 /* Get the next record */
245 /* If we have a complete record, we're finished */
250 * Need to complete the record. A complete record is one
260 /* Expand the record buffer */
285 /* Complete the record */
294 /* Read failed, corrupt record? */
300 } /* End incomplete record handling */
410 * table and returns the first record in the table.
415 * Pointer to the next record in the device-group table, or
431 char *record; /* Record just read */
448 while (!done && (record = getnextrec())) {
450 /* Is this a comment record or a data record */
451 if (strchr("#\n", *record) ||
452 isspace((unsigned char)*record)) {
455 * Record is a comment record
461 if (ent->dataspace = malloc(strlen(record)+1)) {
462 (void) strcpy(ent->dataspace, record);
472 * Record is a data record
477 if (p = getfld(record, ":")) {
479 /* Record is a proper record */
552 } /* record contains a group name */
554 } /* record is a data record */
622 * record is to be retrieved from the device-group table.
635 struct dgrptabent *dgrprec; /* Pointer to current record */