HomeSort by: relevance | last modified time | path
    Searched defs:rec (Results 1 - 25 of 27) sorted by relevancy

1 2

  /src/usr.sbin/kvm_mkdb/
testdb.c 63 DBT rec; local in function:testdb
76 rec.data = VRS_KEY;
77 rec.size = sizeof(VRS_KEY) - 1;
78 if ((db->get)(db, &rec, &rec, 0))
80 if (rec.data == 0 || rec.size == 0 || rec.size > sizeof(dbversion))
82 memmove(dbversion, rec.data, rec.size)
    [all...]
  /src/games/backgammon/common_source/
save.c 53 static const char rec[] = "\" to recover your game.\n\n"; variable in typeref:typename:const char[]
141 writel(rec);
  /src/usr.sbin/sdpd/
record.c 106 record_t *rec; local in function:record_update_request
130 rec = NULL;
131 db_next(srv, fd, &rec);
132 if (rec == NULL || rec->fd != fd)
146 if (!db_create(srv, fd, &rec->bdaddr, rec->handle, &seq))
165 record_t *rec; local in function:record_remove_request
184 rec = NULL;
185 db_next(srv, fd, &rec);
    [all...]
db.c 149 * Iterate through records selected by fd. rec should point to a NULL
154 db_next(server_t *srv, int fd, record_t **rec)
158 if (*rec == NULL)
161 r = LIST_NEXT(*rec, next);
166 *rec = r;
177 db_match_uuid(record_t *rec, uuid_t *uuid)
179 uint8_t *p = rec->data.next;
182 while (p < rec->data.end) {
343 record_t *n, *r, *rec; local in function:db_create
357 rec = malloc(sizeof(record_t) + len)
    [all...]
compat.c 830 record_t *rec; local in function:compat_change_request
851 rec = NULL;
852 db_next(srv, fd, &rec);
853 if (rec == NULL || rec->fd != fd)
862 r = rec->data;
880 if (!db_create(srv, fd, &rec->bdaddr, rec->handle, &r))
  /src/sys/external/bsd/drm2/dist/drm/mga/
mga_warp.c 59 const struct ihex_binrec *rec; local in function:mga_warp_install_microcode
93 for (rec = (const struct ihex_binrec *)fw->data;
94 rec;
95 rec = ihex_next_binrec(rec)) {
96 size += WARP_UCODE_SIZE(be16_to_cpu(rec->len));
117 for (rec = (const struct ihex_binrec *)fw->data;
118 rec;
119 rec = ihex_next_binrec(rec)) {
    [all...]
  /src/usr.sbin/btpand/
client.c 180 sdp_data_t ssp, ail, rsp, rec, value, pdl, seq; local in function:client_query
232 while (!rv && sdp_get_seq(&rsp, &rec)) {
233 if (!sdp_get_attr(&rec, &attr, &value)
  /src/usr.bin/sdpquery/
command.c 150 sdp_data_t ssp, rec, rsp; local in function:do_sdp_search
167 while (sdp_get_seq(&rsp, &rec)) {
173 print_record(&rec);
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_i2c.c 51 struct amdgpu_i2c_bus_rec *rec = &i2c->rec; local in function:amdgpu_i2c_pre_xfer
57 if (rec->hw_capable) {
58 temp = RREG32(rec->mask_clk_reg);
60 WREG32(rec->mask_clk_reg, temp);
64 temp = RREG32(rec->a_clk_reg) & ~rec->a_clk_mask;
65 WREG32(rec->a_clk_reg, temp);
67 temp = RREG32(rec->a_data_reg) & ~rec->a_data_mask
93 struct amdgpu_i2c_bus_rec *rec = &i2c->rec; local in function:amdgpu_i2c_post_xfer
112 struct amdgpu_i2c_bus_rec *rec = &i2c->rec; local in function:amdgpu_i2c_get_clock
127 struct amdgpu_i2c_bus_rec *rec = &i2c->rec; local in function:amdgpu_i2c_get_data
141 struct amdgpu_i2c_bus_rec *rec = &i2c->rec; local in function:amdgpu_i2c_set_clock
154 struct amdgpu_i2c_bus_rec *rec = &i2c->rec; local in function:amdgpu_i2c_set_data
    [all...]
amdgpu_mode.h 230 struct amdgpu_i2c_bus_rec rec; member in struct:amdgpu_i2c_chan
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_rtl_mutex.cc 159 void MutexPostLock(ThreadState *thr, uptr pc, uptr addr, u32 flagz, int rec) {
160 DPrintf("#%d: MutexPostLock %zx flag=0x%x rec=%d\n",
161 thr->tid, addr, flagz, rec);
163 CHECK_GT(rec, 0);
165 rec = 1;
184 s->recursion += rec;
221 int rec = 0; local in function:__tsan::MutexUnlock
229 rec = (flagz & MutexFlagRecursiveUnlock) ? s->recursion : 1;
230 s->recursion -= rec;
254 return rec;
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_i2c.c 104 struct radeon_i2c_bus_rec *rec = &i2c->rec; local in function:pre_xfer
113 if (rec->hw_capable) {
126 if (rec->a_clk_reg == reg) {
138 if (ASIC_IS_DCE3(rdev) && rec->hw_capable) {
139 temp = RREG32(rec->mask_clk_reg);
141 WREG32(rec->mask_clk_reg, temp);
145 temp = RREG32(rec->a_clk_reg) & ~rec->a_clk_mask;
146 WREG32(rec->a_clk_reg, temp)
174 struct radeon_i2c_bus_rec *rec = &i2c->rec; local in function:post_xfer
193 struct radeon_i2c_bus_rec *rec = &i2c->rec; local in function:get_clock
208 struct radeon_i2c_bus_rec *rec = &i2c->rec; local in function:get_data
222 struct radeon_i2c_bus_rec *rec = &i2c->rec; local in function:set_clock
235 struct radeon_i2c_bus_rec *rec = &i2c->rec; local in function:set_data
341 struct radeon_i2c_bus_rec *rec = &i2c->rec; local in function:r100_hw_i2c_xfer
594 struct radeon_i2c_bus_rec *rec = &i2c->rec; local in function:r500_hw_i2c_xfer
827 struct radeon_i2c_bus_rec *rec = &i2c->rec; local in function:radeon_hw_i2c_xfer
    [all...]
  /src/sys/fs/hfs/
hfs_vfsops.c 538 hfs_catalog_keyed_record_t rec; local in function:hfs_loadvnode
568 &rec, &cat_key, &cbargs) != 0) {
573 memcpy(&hnode->h_rec, &rec, sizeof(hnode->h_rec));
hfs_vnops.c 320 hfs_catalog_keyed_record_t rec; /* catalog record of requested child */ local in function:hfs_vop_lookup
385 } else if (dp->h_rec.u.cnid == rec.file.u.cnid) {
421 &key, &rec, &cbargs);
434 if (rec.file.user_info.file_type == HFS_HARD_LINK_FILE_TYPE
435 && rec.file.user_info.file_creator == HFS_HFSLUS_CREATOR) {
437 rec.file.bsd.special.inode_num,
438 &rec, &cbargs) != 0) {
444 if (rec.type == HFS_REC_FILE
446 && rec.file.rsrc_fork.logical_size > 0) {
448 error = hfs_vget_internal(vdp->v_mount, rec.file.cnid
    [all...]
  /src/usr.bin/rfcomm_sppd/
rfcomm_sppd.c 417 sdp_data_t rec; local in function:open_server
456 rec.next = buffer;
457 rec.end = buffer + sizeof(buffer);
459 sdp_put_uint16(&rec, SDP_ATTR_SERVICE_RECORD_HANDLE);
460 sdp_put_uint32(&rec, 0x00000000);
462 sdp_put_uint16(&rec, SDP_ATTR_SERVICE_CLASS_ID_LIST);
463 sdp_put_seq(&rec, 3);
464 sdp_put_uuid16(&rec, s->class);
468 sdp_put_uint16(&rec, SDP_ATTR_PROTOCOL_DESCRIPTOR_LIST);
469 sdp_put_seq(&rec, 12 + len)
572 sdp_data_t ail, ssp, rsp, rec, value, pdl, seq; local in function:service_search
    [all...]
  /src/usr.bin/sort/
msort.c 80 RECHEADER *rec; member in struct:mfile
208 if (cfile->rec == NULL) {
209 cfile->rec = allocrec(NULL, DEFLLEN);
210 cfile->end = (u_char *)cfile->rec + DEFLLEN;
215 c = cfile->get(cfile->fp, cfile->rec, cfile->end, ftbl);
221 sz = (cfile->end - (u_char *)cfile->rec) * 2;
222 cfile->rec = allocrec(cfile->rec, sz);
223 cfile->end = (u_char *)cfile->rec + sz;
255 put(cfile->rec, outfp)
    [all...]
  /src/usr.sbin/btdevctl/
sdp.c 154 sdp_data_t rsp, rec; local in function:cfg_search
160 while (sdp_get_seq(&rsp, &rec)) {
161 if (config_pnp(dict, &rec) == 0)
169 while (sdp_get_seq(&rsp, &rec)) {
170 errno = (*cfgtype[i].handler)(dict, &rec);
214 config_pnp(prop_dictionary_t dict, sdp_data_t *rec)
225 while (sdp_get_attr(rec, &attr, &value)) {
272 config_hid(prop_dictionary_t dict, sdp_data_t *rec)
288 while (sdp_get_attr(rec, &attr, &value)) {
351 config_hset(prop_dictionary_t dict, sdp_data_t *rec)
    [all...]
  /src/sys/dev/marvell/
gt.c 576 uint32_t addr, dlo, dhi, rec, calc, count; local in function:gt_ecc_intr
582 rec = gt_read(gt, GT_ECC_Rec);
590 "ECC error: %s: addr %#x data %#x.%#x rec %#x calc %#x cnt %#x\n",
591 gt_ecc_intr_str[err], addr, dhi, dlo, rec, calc, count);
  /src/sys/dev/pci/
emuxkivar.h 65 /* Recommend the same size as EMU_PTESIZE to be symmetrical for play/rec */
137 struct dmamem *rmem; /* rec internal memory */
140 audio_params_t rec; member in struct:emuxki_softc
141 void *rptr; /* rec MI ptr */
142 int rcurrent; /* rec software trans count */
esavar.h 92 struct esa_channel rec; member in struct:esa_voice
  /src/common/dist/zlib/examples/
gzlog.c 721 FILE *rec; local in function:log_log
725 rec = fopen(log->path, "a");
726 if (rec == NULL)
728 fprintf(rec, "%.24s %s recovery: %s\n", ctime(&now), op == APPEND_OP ?
730 fclose(rec);
  /src/usr.sbin/bta2dpd/bta2dpd/
bta2dpd.c 1087 sdp_data_t ssp, ail, rsp, rec, value, pdl, seq; local in function:client_query
1139 while (!rv && sdp_get_seq(&rsp, &rec)) {
1140 if (!sdp_get_attr(&rec, &attr, &value)
  /src/usr.sbin/makemandb/
makemandb.c 305 struct roff_mandb_rec rec; local in function:main
335 memset(&rec, 0, sizeof(rec));
337 init_secbuffs(&rec);
426 cleanup(&rec);
427 free_secbuffs(&rec);
433 update_db(db, mp, &rec);
436 free_secbuffs(&rec);
641 mandb_rec *rec, int *new_count, int *link_count, int *err_count)
660 sqlite3_bind_int64(inner_stmt, idx, rec->device)
    [all...]
  /src/sys/netinet/
sctp_structs.h 236 } rec; member in struct:sctp_tmit_chunk
642 * rec'd. We slide it up every time we raise last_acked_seq and 0
  /src/sys/dev/
ipmi.c 1997 uint16_t rec; local in function:ipmi_thread
2032 for (rec = 0; rec != 0xFFFF;)
2033 if (get_sdr(sc, rec, &rec))

Completed in 137 milliseconds

1 2