Home
last modified time | relevance | path

Searched refs:rec_type (Results 1 – 25 of 925) sorted by relevance

12345678910>>...37

/dports/www/trafficserver/trafficserver-9.1.1/lib/records/
H A DP_RecCore.cc114 if (i_am_the_record_owner(r->rec_type)) { in send_push_message()
157 … if (i_am_the_record_owner(r->rec_type) || (REC_TYPE_IS_STAT(r->rec_type) && !(r->registered)) || in send_pull_message()
194 if (REC_TYPE_IS_STAT(r->rec_type)) { in recv_message_cb()
208 if (REC_TYPE_IS_STAT(r->rec_type)) { in recv_message_cb()
267 …ink_assert((rec_type == RECT_NODE) || (rec_type == RECT_PROCESS) || (rec_type == RECT_LOCAL) || (r…
329 ink_assert((rec_type == RECT_CONFIG) || (rec_type == RECT_LOCAL)); in RecRegisterConfigInt()
337 ink_assert((rec_type == RECT_CONFIG) || (rec_type == RECT_LOCAL)); in RecRegisterConfigFloat()
346 ink_assert((rec_type == RECT_CONFIG) || (rec_type == RECT_LOCAL)); in RecRegisterConfigString()
354 ink_assert((rec_type == RECT_CONFIG) || (rec_type == RECT_LOCAL)); in RecRegisterConfigCounter()
409 r2.rec_type = rec_type; in RecSetRecord()
[all …]
H A DI_RecCore.h81 RecErrT _RecRegisterStatInt(RecT rec_type, const char *name, RecInt data_default, RecPersistT persi…
82 #define RecRegisterStatInt(rec_type, name, data_default, persist_type) \ argument
83 _RecRegisterStatInt((rec_type), (name), (data_default), REC_PERSISTENCE_TYPE(persist_type))
85 RecErrT _RecRegisterStatFloat(RecT rec_type, const char *name, RecFloat data_default, RecPersistT p…
86 #define RecRegisterStatFloat(rec_type, name, data_default, persist_type) \ argument
87 _RecRegisterStatFloat((rec_type), (name), (data_default), REC_PERSISTENCE_TYPE(persist_type))
90 #define RecRegisterStatString(rec_type, name, data_default, persist_type) \ argument
91 _RecRegisterStatString((rec_type), (name), (data_default), REC_PERSISTENCE_TYPE(persist_type))
94 #define RecRegisterStatCounter(rec_type, name, data_default, persist_type) \ argument
95 _RecRegisterStatCounter((rec_type), (name), (data_default), REC_PERSISTENCE_TYPE(persist_type))
[all …]
H A DP_RecUtils.h35 #define REC_TYPE_IS_STAT(rec_type) (((rec_type) == RECT_PROCESS) || ((rec_type) == RECT_PLUGIN) || … argument
37 #define REC_TYPE_IS_CONFIG(rec_type) (((rec_type) == RECT_CONFIG) || ((rec_type) == RECT_LOCAL)) argument
44 RecRecord *RecAlloc(RecT rec_type, const char *name, RecDataT data_type);
H A DRecCore.cc60 if (REC_TYPE_IS_STAT(rec_type)) { in register_record()
64 if (REC_TYPE_IS_CONFIG(rec_type)) { in register_record()
82 r->rec_type = rec_type; in register_record()
97 if (REC_TYPE_IS_STAT(r->rec_type)) { in register_record()
510 if ((r->rec_type & rec_type) == 0) { in RecLookupMatchingRecords()
539 *rec_type = r->rec_type; in RecGetRecordType()
595 if (REC_TYPE_IS_STAT(r->rec_type)) { in RecGetRecordPersistenceType()
967 r->rec_type = record->rec_type; in RecForceInsert()
984 if (REC_TYPE_IS_STAT(r->rec_type)) { in RecForceInsert()
1042 if ((rec_type == RECT_NULL) || (rec_type & r->rec_type)) { in RecDumpRecords()
[all …]
H A DP_RecCore.h61 RecRecord *RecRegisterStat(RecT rec_type, const char *name, RecDataT data_type, RecData data_defaul…
63 RecRecord *RecRegisterConfig(RecT rec_type, const char *name, RecDataT data_type, RecData data_defa…
72 RecErrT RecSetRecord(RecT rec_type, const char *name, RecDataT data_type, RecData *data, RecRawStat…
88 bool i_am_the_record_owner(RecT rec_type);
95 void RecDumpRecordsHt(RecT rec_type = RECT_NULL);
97 void RecDumpRecords(RecT rec_type, RecDumpEntryCb callback, void *edata);
/dports/mail/postfix-current/postfix-3.7-20211107/src/postcat/
H A Dpostcat.c171 int rec_type; in postcat() local
185 #define TEXT_RECORD(rec_type) \ in postcat() argument
186 (rec_type == REC_TYPE_CONT || rec_type == REC_TYPE_NORM) in postcat()
233 if (rec_type == REC_TYPE_ERROR) in postcat()
235 if (rec_type == REC_TYPE_EOF) in postcat()
264 if (TEXT_RECORD(rec_type)) { in postcat()
316 } else if (rec_type == REC_TYPE_END) { in postcat()
369 vstream_printf("%3d ", rec_type); in postcat()
370 switch (rec_type) { in postcat()
390 rec_type = 0; in postcat()
[all …]
/dports/mail/postfix-current/postfix-3.7-20211107/src/postdrop/
H A Dpostdrop.c322 int rec_type; in main() local
510 if (rec_type == REC_TYPE_ERROR) in main()
512 if (strchr(*expected, rec_type) == 0) in main()
514 if (rec_type == **expected) in main()
517 if (rec_type == REC_TYPE_TIME) in main()
520 if (rec_type == REC_TYPE_FROM) { in main()
524 if (rec_type == REC_TYPE_RCPT) in main()
527 if (rec_type == REC_TYPE_ATTR) { in main()
561 && rec_type != REC_TYPE_EOF) in main()
562 if (rec_type == REC_TYPE_ERROR) in main()
[all …]
/dports/cad/py-gdspy/gdspy-1.6.8/gdspy/
H A Dgdsiiformat.py59 size, rec_type = struct.unpack(">HH", header)
60 data_type = rec_type & 0x00FF
61 rec_type = rec_type // 256
101 yield [rec_type, data]
122 size, rec_type = struct.unpack(">HH", header)
123 rec_type = rec_type // 256
124 yield (rec_type, header + stream.read(size - 4))
282 size, rec_type = struct.unpack(">HH", data)
283 if rec_type == 0x0102 or rec_type == 0x0502:
/dports/net/mpich/mpich-3.4.3/src/util/logging/rlog/
H A Dprintirlog.c56 int rec_type; in main() local
74 rec_type = RLOG_EVENT_TYPE; in main()
78 rec_type = RLOG_ARROW_TYPE; in main()
82 rec_type = RLOG_STATE_TYPE; in main()
86 rec_type = RLOG_COMM_TYPE; in main()
90 rec_type = RLOG_ENDLOG_TYPE; in main()
100 if (pInput->header.type != rec_type) in main()
103 if ((bAllRecords) || (pInput->header.type == rec_type)) in main()
/dports/net/mpich2/mpich2-1.5/src/util/logging/rlog/
H A Dprintirlog.c62 int rec_type; in main() local
84 rec_type = RLOG_EVENT_TYPE; in main()
89 rec_type = RLOG_ARROW_TYPE; in main()
94 rec_type = RLOG_STATE_TYPE; in main()
99 rec_type = RLOG_COMM_TYPE; in main()
104 rec_type = RLOG_ENDLOG_TYPE; in main()
117 if (pInput->header.type != rec_type) in main()
122 if ((bAllRecords) || (pInput->header.type == rec_type)) in main()
/dports/mail/postfix-current/postfix-3.7-20211107/src/qmgr/
H A Dqmgr_message.c260 int rec_type; in qmgr_message_oldstyle_scan() local
286 if (rec_type <= 0) in qmgr_message_oldstyle_scan()
335 int rec_type; in qmgr_message_read() local
431 if (rec_type <= 0) { in qmgr_message_read()
451 rec_type = REC_TYPE_ERROR; in qmgr_message_read()
456 rec_type = n; in qmgr_message_read()
506 if (rec_type == REC_TYPE_DONE || rec_type == REC_TYPE_DRCP) { in qmgr_message_read()
606 rec_type = REC_TYPE_ERROR; in qmgr_message_read()
807 if (rec_type > 0) in qmgr_message_read()
813 if (rec_type > 0) in qmgr_message_read()
[all …]
/dports/mail/postfix-current/postfix-3.7-20211107/src/oqmgr/
H A Dqmgr_message.c245 int rec_type; in qmgr_message_oldstyle_scan() local
270 if (rec_type <= 0) in qmgr_message_oldstyle_scan()
313 int rec_type; in qmgr_message_read() local
391 if (rec_type <= 0) { in qmgr_message_read()
411 rec_type = REC_TYPE_ERROR; in qmgr_message_read()
416 rec_type = n; in qmgr_message_read()
466 if (rec_type == REC_TYPE_DONE || rec_type == REC_TYPE_DRCP) { in qmgr_message_read()
565 rec_type = REC_TYPE_ERROR; in qmgr_message_read()
766 if (rec_type > 0) in qmgr_message_read()
772 if (rec_type > 0) in qmgr_message_read()
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/include/rdma/
H A Dib_sa.h188 enum sa_path_rec_type rec_type; member
194 switch (rec->rec_type) { in sa_conv_pathrec_to_gid_type()
267 if (src->rec_type != SA_PATH_REC_TYPE_OPA) in sa_convert_path_opa_to_ib()
271 dest->rec_type = SA_PATH_REC_TYPE_IB; in sa_convert_path_opa_to_ib()
279 if (src->rec_type != SA_PATH_REC_TYPE_IB) in sa_convert_path_ib_to_opa()
284 dest->rec_type = SA_PATH_REC_TYPE_OPA; in sa_convert_path_ib_to_opa()
564 if (rec->rec_type == SA_PATH_REC_TYPE_IB) in sa_path_set_slid()
572 if (rec->rec_type == SA_PATH_REC_TYPE_IB) in sa_path_set_dlid()
581 if (rec->rec_type == SA_PATH_REC_TYPE_IB) in sa_path_set_raw_traffic()
589 if (rec->rec_type == SA_PATH_REC_TYPE_IB) in sa_path_get_slid()
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/include/rdma/
H A Dib_sa.h188 enum sa_path_rec_type rec_type; member
194 switch (rec->rec_type) { in sa_conv_pathrec_to_gid_type()
267 if (src->rec_type != SA_PATH_REC_TYPE_OPA) in sa_convert_path_opa_to_ib()
271 dest->rec_type = SA_PATH_REC_TYPE_IB; in sa_convert_path_opa_to_ib()
279 if (src->rec_type != SA_PATH_REC_TYPE_IB) in sa_convert_path_ib_to_opa()
284 dest->rec_type = SA_PATH_REC_TYPE_OPA; in sa_convert_path_ib_to_opa()
564 if (rec->rec_type == SA_PATH_REC_TYPE_IB) in sa_path_set_slid()
572 if (rec->rec_type == SA_PATH_REC_TYPE_IB) in sa_path_set_dlid()
581 if (rec->rec_type == SA_PATH_REC_TYPE_IB) in sa_path_set_raw_traffic()
589 if (rec->rec_type == SA_PATH_REC_TYPE_IB) in sa_path_get_slid()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/include/rdma/
H A Dib_sa.h188 enum sa_path_rec_type rec_type; member
194 switch (rec->rec_type) { in sa_conv_pathrec_to_gid_type()
267 if (src->rec_type != SA_PATH_REC_TYPE_OPA) in sa_convert_path_opa_to_ib()
271 dest->rec_type = SA_PATH_REC_TYPE_IB; in sa_convert_path_opa_to_ib()
279 if (src->rec_type != SA_PATH_REC_TYPE_IB) in sa_convert_path_ib_to_opa()
284 dest->rec_type = SA_PATH_REC_TYPE_OPA; in sa_convert_path_ib_to_opa()
564 if (rec->rec_type == SA_PATH_REC_TYPE_IB) in sa_path_set_slid()
572 if (rec->rec_type == SA_PATH_REC_TYPE_IB) in sa_path_set_dlid()
581 if (rec->rec_type == SA_PATH_REC_TYPE_IB) in sa_path_set_raw_traffic()
589 if (rec->rec_type == SA_PATH_REC_TYPE_IB) in sa_path_get_slid()
[all …]
/dports/mail/postfix-current/postfix-3.7-20211107/src/smtpd/
H A Dsmtpd_proxy.c547 int rec_type; in smtpd_proxy_replay_send() local
837 if (rec_type == REC_TYPE_NORM || rec_type == REC_TYPE_CONT) in smtpd_proxy_save_rec_put()
845 if (ret != rec_type) { in smtpd_proxy_save_rec_put()
849 return (rec_type); in smtpd_proxy_save_rec_put()
872 if (rec_type == REC_TYPE_NORM) in smtpd_proxy_rec_put()
878 return (rec_type); in smtpd_proxy_rec_put()
901 if (rec_type == REC_TYPE_NORM) in smtpd_proxy_save_rec_fprintf()
910 if (ret != rec_type) { in smtpd_proxy_save_rec_fprintf()
914 return (rec_type); in smtpd_proxy_save_rec_fprintf()
940 if (rec_type == REC_TYPE_NORM) in smtpd_proxy_rec_fprintf()
[all …]
/dports/devel/py-oletools/oletools-0.54.2/oletools/
H A Dxls_parser.py154 return rec_type, rec_size, None
157 def record_class_for_type(cls, rec_type): argument
169 def record_class_for_type(cls, rec_type): argument
174 if rec_type == XlsRecordBof.TYPE:
176 elif rec_type == XlsRecordEof.TYPE:
178 elif rec_type == XlsRecordSupBook.TYPE:
199 rec_type = (val & self.LOW7_BIT_MASK) + \
202 rec_type = val
212 return rec_type, rec_size, None
215 def record_class_for_type(cls, rec_type): argument
[all …]
/dports/security/botan110/Botan-1.10.17/src/ssl/
H A Dtls_server.cpp214 byte rec_type = CONNECTION_CLOSED; in state_machine() local
226 rec_type = CONNECTION_CLOSED; in state_machine()
235 if(rec_type == CONNECTION_CLOSED) in state_machine()
241 else if(rec_type == APPLICATION_DATA) in state_machine()
248 else if(rec_type == HANDSHAKE || rec_type == CHANGE_CIPHER_SPEC) in state_machine()
249 read_handshake(rec_type, record); in state_machine()
250 else if(rec_type == ALERT) in state_machine()
271 void TLS_Server::read_handshake(byte rec_type, in read_handshake() argument
274 if(rec_type == HANDSHAKE) in read_handshake()
286 if(rec_type == HANDSHAKE) in read_handshake()
[all …]
H A Dtls_client.cpp241 byte rec_type = CONNECTION_CLOSED; in state_machine() local
253 rec_type = CONNECTION_CLOSED; in state_machine()
262 if(rec_type == CONNECTION_CLOSED) in state_machine()
268 else if(rec_type == APPLICATION_DATA) in state_machine()
275 else if(rec_type == HANDSHAKE || rec_type == CHANGE_CIPHER_SPEC) in state_machine()
276 read_handshake(rec_type, record); in state_machine()
277 else if(rec_type == ALERT) in state_machine()
303 void TLS_Client::read_handshake(byte rec_type, in read_handshake() argument
306 if(rec_type == HANDSHAKE) in read_handshake()
319 if(rec_type == HANDSHAKE) in read_handshake()
[all …]
/dports/cad/cura/Cura-58bae31/plugins/USBPrinting/avr_isp/
H A DintelHex.py25 rec_type = int(line[7:9], 16)
35 if rec_type == 0:#Data record
40 elif rec_type == 1: #End Of File record
42 elif rec_type == 2: #Extended Segment Address Record
45 Logger.log("d", "%s, %s, %s, %s, %s", rec_type, rec_len, addr, check_sum, line)
/dports/mail/postfix-current/postfix-3.7-20211107/src/global/
H A Dmime_state.c436 #define BODY_OUT(ptr, rec_type, text, len) do { \ argument
438 (ptr)->body_out((ptr)->app_context, (rec_type), \
738 if (rec_type == REC_TYPE_NORM) { in mime_state_downgrade()
759 || rec_type == REC_TYPE_CONT); in mime_state_update()
765 state->prev_rec_type = rec_type; \ in mime_state_update()
1028 && rec_type == REC_TYPE_NORM in mime_state_update()
1110 mime_state_downgrade(state, rec_type, text, len); in mime_state_update()
1112 BODY_OUT(state, rec_type, text, len); in mime_state_update()
1217 if (rec_type == REC_TYPE_NORM) in body_out()
1242 int rec_type; in main() local
[all …]
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/storage/innobase/lob/
H A Dlob0purge.cc146 if (rec_type == TRX_UNDO_INSERT_REC || first.is_empty()) { in rollback()
185 undo_no_t undo_no, ulint rec_type) { in z_rollback() argument
277 undo_no_t undo_no, ulint rec_type) { in z_purge() argument
282 z_rollback(ctx, index, trxid, undo_no, rec_type); in z_purge()
343 rec_type == TRX_UNDO_UPD_DEL_REC) && in z_purge()
347 if (rec_type == TRX_UNDO_DEL_MARK_REC || ok_to_free_2) { in z_purge()
466 z_purge(ctx, index, trxid, undo_no, rec_type); in purge()
473 rollback(ctx, index, trxid, undo_no, rec_type, uf); in purge()
524 bool ok_to_free = (rec_type == TRX_UNDO_UPD_EXIST_REC || in purge()
525 rec_type == TRX_UNDO_UPD_DEL_REC) && in purge()
[all …]
/dports/astro/gpsbabel14/gpsbabel-1.4.4/
H A Dmake-an1sym.pl63 $hotspotx = $rec_type + 0x10000*$hotspotxhi;
330 ($rec_type) = shiftunpack( 's' );
331 if ( $rec_type == 0x4c49 ) { # 'IL'
336 elsif ( $rec_type == 0x4d42 ) { # 'BM'
349 elsif ($rec_type == 0 ) { # crap
/dports/astro/gpsbabel/gpsbabel-gpsbabel_1_7_0/
H A Dmake-an1sym.pl63 $hotspotx = $rec_type + 0x10000*$hotspotxhi;
331 ($rec_type) = shiftunpack( 's' );
332 if ( $rec_type == 0x4c49 ) { # 'IL'
337 elsif ( $rec_type == 0x4d42 ) { # 'BM'
350 elsif ($rec_type == 0 ) { # crap
/dports/textproc/bibtool/BibTool/
H A Dcrossref.c52 { rec_type src_rec; /*source record type index*/
54 rec_type dest_rec; /*target record type index*/
77 rec_type sr; /* */ in new_map()
79 rec_type dr; /* */
150 rec_type s_rec; /* */ in map_add()
152 rec_type d_rec; /* */
191 rec_type s_rec; /* */ in map_get()
193 rec_type d_rec; /* */
220 rec_type s_rec, d_rec; /* */

12345678910>>...37