Searched refs:rep (Results 1 - 25 of 228) sorted by relevance

12345678910

/freebsd-11-stable/crypto/heimdal/lib/krb5/
H A Dfree.c37 krb5_free_kdc_rep(krb5_context context, krb5_kdc_rep *rep) argument
39 free_KDC_REP(&rep->kdc_rep);
40 free_EncTGSRepPart(&rep->enc_part);
41 free_KRB_ERROR(&rep->error);
42 memset(rep, 0, sizeof(*rep));
/freebsd-11-stable/lib/libusbhid/
H A Ddescr_compat.c71 struct usb_ctl_report_desc rep; local
73 rep.ucrd_size = 0;
74 if (ioctl(fd, USB_GET_REPORT_DESC, &rep) < 0)
77 return (hid_use_report_desc(rep.ucrd_data, (unsigned int)rep.ucrd_size));
H A Ddescr.c61 report_desc_t rep; local
68 if ((rep = hid_get_report_desc(fd)) == NULL)
71 for (d = hid_start_parse(rep, kindset, -1); hid_get_item(d, &h); ) {
79 hid_dispose_report_desc(rep);
100 report_desc_t rep; local
149 rep = hid_use_report_desc(data, ugd.ugd_actlen);
153 return (rep);
/freebsd-11-stable/contrib/unbound/iterator/
H A Diter_resptype.c56 if(FLAGS_GET_RCODE(msg->rep->flags) == LDNS_RCODE_NXDOMAIN)
63 if(msg->rep->an_numrrsets > 0) {
71 for(i=0; i<msg->rep->an_numrrsets; i++) {
72 struct ub_packed_rrset_key* s = msg->rep->rrsets[i];
118 if(FLAGS_GET_RCODE(msg->rep->flags) == LDNS_RCODE_NXDOMAIN) {
120 if( (msg->rep->flags&BIT_RA) &&
121 !(msg->rep->flags&BIT_AA) && !rdset)
124 for(i=0; i<msg->rep->an_numrrsets; i++) {
125 s = msg->rep->rrsets[i];
137 if(FLAGS_GET_RCODE(msg->rep
[all...]
/freebsd-11-stable/contrib/unbound/cachedb/
H A Dredis.c121 redisReply* rep = NULL; local
124 rep = redis_command(env, cachedb_env,
126 if(!rep) {
133 redis_reply_type = rep->type;
134 freeReplyObject(rep);
189 redisReply* rep; local
212 rep = (redisReply*)redisCommand(ctx, command, data, data_len);
213 if(!rep) {
225 if(rep->type == REDIS_REPLY_ERROR)
227 data ? "set" : "get", rep
236 redisReply* rep; local
284 redisReply* rep; local
[all...]
/freebsd-11-stable/lib/libc/amd64/string/
H A Dbzero.S30 rep /* zero until word aligned */
36 rep
40 rep
H A Dbcopy.S65 rep
69 rep
79 rep
85 rep
/freebsd-11-stable/contrib/llvm-project/libcxx/src/include/
H A Drefstring.h38 inline char * data_from_rep(_Rep_base *rep) noexcept {
39 char *data = reinterpret_cast<char *>(rep);
40 return data + sizeof(*rep);
72 _Rep_base* rep = static_cast<_Rep_base *>(::operator new(sizeof(*rep) + len + 1)); local
73 rep->len = len;
74 rep->cap = len;
75 rep->count = 0;
76 char *data = data_from_rep(rep);
109 _Rep_base* rep local
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Drep-cache.c0 /* rep-sharing.c --- the rep-sharing cache for fsfs
30 #include "rep-cache.h"
37 #include "rep-cache-db.h"
75 as a whole when creating a new rep cache and not simply default
132 _("Couldn't open rep-cache database '%s'"),
201 if (SVN_IS_VALID_REVNUM(max)) /* The rep-cache could be empty. */
214 representation_t *rep;
232 rep = apr_pcalloc(iterpool, sizeof(*rep));
212 representation_t *rep; local
272 representation_t *rep; local
325 svn_fs_fs__set_rep_reference(svn_fs_t *fs, representation_t *rep, apr_pool_t *pool) argument
[all...]
H A Dcached_data.h43 representation_t *rep,
69 svn_fs_fs__check_rep(representation_t *rep,
81 representation_t *rep,
87 not set, bypass fulltext cache lookup for this rep and don't put the
93 representation_t *rep,
104 representation_t *rep,
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_debugging.cpp77 const ReportDesc *rep = (ReportDesc *)report; local
78 *description = ReportTypeDescription(rep->typ);
79 *count = rep->count;
80 *stack_count = rep->stacks.Size();
81 *mop_count = rep->mops.Size();
82 *loc_count = rep->locs.Size();
83 *mutex_count = rep->mutexes.Size();
84 *thread_count = rep->threads.Size();
85 *unique_tid_count = rep->unique_tids.Size();
86 if (rep
92 const ReportDesc *rep = (ReportDesc *)report; local
100 const ReportDesc *rep = (ReportDesc *)report; local
111 const ReportDesc *rep = (ReportDesc *)report; local
128 const ReportDesc *rep = (ReportDesc *)report; local
145 const ReportDesc *rep = (ReportDesc *)report; local
155 const ReportDesc *rep = (ReportDesc *)report; local
169 const ReportDesc *rep = (ReportDesc *)report; local
183 const ReportDesc *rep = (ReportDesc *)report; local
[all...]
H A Dtsan_report.cpp283 static ReportStack *ChooseSummaryStack(const ReportDesc *rep) { argument
284 if (rep->mops.Size())
285 return rep->mops[0]->stack;
286 if (rep->stacks.Size())
287 return rep->stacks[0];
288 if (rep->mutexes.Size())
289 return rep->mutexes[0]->stack;
290 if (rep->threads.Size())
291 return rep->threads[0]->stack;
316 void PrintReport(const ReportDesc *rep) { argument
457 PrintReport(const ReportDesc *rep) argument
[all...]
/freebsd-11-stable/contrib/unbound/util/data/
H A Dmsgreply.c99 struct reply_info* rep; local
105 rep = (struct reply_info*)regional_alloc(region, s);
106 else rep = (struct reply_info*)malloc(s +
108 if(!rep)
110 rep->flags = flags;
111 rep->qdcount = qd;
112 rep->ttl = ttl;
113 rep->prefetch_ttl = prettl;
114 rep->serve_expired_ttl = expttl;
115 rep
134 parse_create_repinfo(struct msg_parse* msg, struct reply_info** rep, struct regional* region) argument
146 reply_info_alloc_rrset_keys(struct reply_info* rep, struct alloc_cache* alloc, struct regional* region) argument
415 parse_copy_decompress(sldns_buffer* pkt, struct msg_parse* msg, struct reply_info* rep, struct regional* region) argument
443 parse_create_msg(sldns_buffer* pkt, struct msg_parse* msg, struct alloc_cache* alloc, struct query_info* qinf, struct reply_info** rep, struct regional* region) argument
463 reply_info_parse(sldns_buffer* pkt, struct alloc_cache* alloc, struct query_info* qinf, struct reply_info** rep, struct regional* region, struct edns_data* edns) argument
509 reply_info_sortref(struct reply_info* rep) argument
516 reply_info_set_ttls(struct reply_info* rep, time_t timenow) argument
536 reply_info_parsedelete(struct reply_info* rep, struct alloc_cache* alloc) argument
703 reply_info_copy(struct reply_info* rep, struct alloc_cache* alloc, struct regional* region) argument
728 reply_find_final_cname_target(struct query_info* qinfo, struct reply_info* rep) argument
749 reply_find_answer_rrset(struct query_info* qinfo, struct reply_info* rep) argument
774 reply_find_rrset_section_an(struct reply_info* rep, uint8_t* name, size_t namelen, uint16_t type, uint16_t dclass) argument
790 reply_find_rrset_section_ns(struct reply_info* rep, uint8_t* name, size_t namelen, uint16_t type, uint16_t dclass) argument
806 reply_find_rrset(struct reply_info* rep, uint8_t* name, size_t namelen, uint16_t type, uint16_t dclass) argument
823 log_dns_msg(const char* str, struct query_info* qinfo, struct reply_info* rep) argument
893 reply_check_cname_chain(struct query_info* qinfo, struct reply_info* rep) argument
918 reply_all_rrsets_secure(struct reply_info* rep) argument
933 struct reply_info* rep; local
1037 inplace_cb_reply_call_generic( struct inplace_cb* callback_list, enum inplace_cb_list_type type, struct query_info* qinfo, struct module_qstate* qstate, struct reply_info* rep, int rcode, struct edns_data* edns, struct comm_reply* repinfo, struct regional* region, struct timeval* start_time) argument
1061 inplace_cb_reply_call(struct module_env* env, struct query_info* qinfo, struct module_qstate* qstate, struct reply_info* rep, int rcode, struct edns_data* edns, struct comm_reply* repinfo, struct regional* region, struct timeval* start_time) argument
1071 inplace_cb_reply_cache_call(struct module_env* env, struct query_info* qinfo, struct module_qstate* qstate, struct reply_info* rep, int rcode, struct edns_data* edns, struct comm_reply* repinfo, struct regional* region, struct timeval* start_time) argument
1082 inplace_cb_reply_local_call(struct module_env* env, struct query_info* qinfo, struct module_qstate* qstate, struct reply_info* rep, int rcode, struct edns_data* edns, struct comm_reply* repinfo, struct regional* region, struct timeval* start_time) argument
1093 inplace_cb_reply_servfail_call(struct module_env* env, struct query_info* qinfo, struct module_qstate* qstate, struct reply_info* rep, int rcode, struct edns_data* edns, struct comm_reply* repinfo, struct regional* region, struct timeval* start_time) argument
[all...]
H A Dmsgreply.h264 * @param rep: allocated reply_info is returned (only on no error).
273 struct query_info* qinf, struct reply_info** rep,
284 * @param rep: reply info is allocated and returned.
293 struct reply_info** rep, struct regional* region);
301 * @param rep: reply info. rrsets must be filled in.
303 void reply_info_sortref(struct reply_info* rep);
307 * @param rep: reply info. rrsets must be filled in.
311 void reply_info_set_ttls(struct reply_info* rep, time_t timenow);
316 * @param rep: reply_info to delete.
319 void reply_info_parsedelete(struct reply_info* rep, struc
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Drep-cache.c0 /* rep-sharing.c --- the rep-sharing cache for fsx
29 #include "rep-cache.h"
37 #include "rep-cache-db.h"
78 as a whole when creating a new rep cache and not simply default
132 _("Couldn't open rep-cache database '%s'"),
200 if (SVN_IS_VALID_REVNUM(max)) /* The rep-cache could be empty. */
213 svn_fs_x__representation_t *rep;
231 rep = apr_pcalloc(iterpool, sizeof(*rep));
211 svn_fs_x__representation_t *rep; local
271 svn_fs_x__representation_t *rep; local
320 svn_fs_x__set_rep_reference(svn_fs_t *fs, svn_fs_x__representation_t *rep, apr_pool_t *scratch_pool) argument
[all...]
/freebsd-11-stable/contrib/unbound/services/cache/
H A Ddns.c60 * @param rep: contains list of rrsets to store.
73 store_rrsets(struct module_env* env, struct reply_info* rep, time_t now, argument
79 for(i=0; i<rep->rrset_count; i++) {
80 rep->ref[i].key = rep->rrsets[i];
81 rep->ref[i].id = rep->rrsets[i]->id;
83 switch(rrset_cache_update(env->rrset_cache, &rep->ref[i],
84 env->alloc, now + ((ntohs(rep->ref[i].key->rk.type)==
91 lock_rw_rdlock(&rep
156 dns_cache_store_msg(struct module_env* env, struct query_info* qinfo, hashvalue_type hash, struct reply_info* rep, time_t leeway, int pside, struct reply_info* qrep, uint32_t flags, struct regional* region) argument
970 struct reply_info* rep = NULL; local
1031 struct reply_info* rep = (struct reply_info*)msg->entry.data; local
[all...]
/freebsd-11-stable/contrib/unbound/validator/
H A Dval_utils.c63 struct query_info* qinf, struct reply_info* rep, size_t skip)
65 int rcode = (int)FLAGS_GET_RCODE(rep->flags);
70 if(rcode == LDNS_RCODE_NXDOMAIN && rep->an_numrrsets == 0)
74 if(!(query_flags&BIT_RD) && rep->an_numrrsets == 0 &&
81 for(i=0; i<rep->ns_numrrsets; i++) {
82 if(ntohs(rep->rrsets[i]->rk.type) == LDNS_RR_TYPE_SOA)
84 if(ntohs(rep->rrsets[i]->rk.type) == LDNS_RR_TYPE_DS)
86 if(ntohs(rep->rrsets[i]->rk.type) == LDNS_RR_TYPE_NS)
92 if(!(query_flags&BIT_RD) && rep->ns_numrrsets == 0 &&
93 rep
62 val_classify_response(uint16_t query_flags, struct query_info* origqinf, struct query_info* qinf, struct reply_info* rep, size_t skip) argument
217 val_find_signer(enum val_classification subtype, struct query_info* qinf, struct reply_info* rep, size_t skip, uint8_t** signer_name, size_t* signer_len) argument
811 val_chase_cname(struct query_info* qchase, struct reply_info* rep, size_t* cname_skip) argument
914 val_reply_remove_auth(struct reply_info* rep, size_t index) argument
927 val_check_nonsecure(struct module_env* env, struct reply_info* rep) argument
1011 val_mark_indeterminate(struct reply_info* rep, struct val_anchors* anchors, struct rrset_cache* r, struct module_env* env) argument
1031 val_mark_insecure(struct reply_info* rep, uint8_t* kname, struct rrset_cache* r, struct module_env* env) argument
1048 val_next_unchecked(struct reply_info* rep, size_t skip) argument
1111 val_has_signed_nsecs(struct reply_info* rep, char** reason) argument
[all...]
/freebsd-11-stable/crypto/heimdal/kcm/
H A Dconnect.c46 krb5_data request, rep; local
50 krb5_data_zero(&rep);
80 ret = kcm_dispatch(kcm_context, &peercred, &request, &rep);
82 (*complete)(cctx, ret, &rep);
83 krb5_data_free(&rep);
/freebsd-11-stable/lib/libc/i386/string/
H A Dbzero.S66 rep
71 rep
76 L1: rep
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_base/bdb/
H A Dreps-table.h70 const representation_t *rep,
75 /* Store REP as a new representation in FS, and the new rep's key in
79 const representation_t *rep,
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_base/
H A Dreps-strings.c46 static svn_boolean_t rep_is_mutable(representation_t *rep,
49 if ((! rep->txn_id) || (strcmp(rep->txn_id, txn_id) != 0))
70 * rep; else initialize the rep with an all-zero (i.e., always
74 * rep; else initialize the rep with an all-zero (i.e., always
85 representation_t *rep = apr_pcalloc(pool, sizeof(*rep));
87 rep
45 rep_is_mutable(representation_t *rep, const char *txn_id) argument
84 representation_t *rep = apr_pcalloc(pool, sizeof(*rep)); local
99 delta_string_keys(apr_array_header_t **keys, const representation_t *rep, apr_pool_t *pool) argument
254 get_one_window(struct compose_handler_baton *cb, svn_fs_t *fs, representation_t *rep, int cur_chunk) argument
348 representation_t *const rep = local
430 get_chunk_offset(representation_t *rep, svn_filesize_t rep_offset, apr_size_t *chunk_offset) argument
469 representation_t *rep; local
554 representation_t *rep = NULL; local
591 representation_t *rep; local
727 representation_t *rep; local
768 representation_t *rep; local
818 representation_t *rep; local
904 representation_t *rep; local
1055 representation_t *rep; local
1163 representation_t *rep; local
1245 representation_t *rep; local
[all...]
/freebsd-11-stable/crypto/heimdal/lib/ipc/
H A Dts.c66 heim_idata rep; local
68 rep.length = 0;
69 rep.data = NULL;
70 (*complete)(cctx, 0, &rep);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_extend.h82 } rep = {.f = x}; local
83 return rep.i;
90 } rep = {.i = x}; local
91 return rep.f;
H A Dfp_trunc.h69 } rep = {.f = x}; local
70 return rep.i;
77 } rep = {.i = x}; local
78 return rep.f;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/dd/
H A Ddd_rtl.cpp38 static void ReportDeadlock(Thread *thr, DDReport *rep) { argument
39 if (rep == 0)
44 for (int i = 0; i < rep->n; i++) {
46 rep->loop[i].thr_ctx, rep->loop[i].mtx_ctx1, rep->loop[i].mtx_ctx0);
47 PrintStackTrace(thr, rep->loop[i].stk[1]);
48 if (rep->loop[i].stk[0]) {
50 rep->loop[i].mtx_ctx0);
51 PrintStackTrace(thr, rep
[all...]

Completed in 393 milliseconds

12345678910