match              38 src/libsir/include/sir/filecache.h typedef bool (*sir_fcache_pred)(const void* match, const sirfile* iter);
match              64 src/libsir/include/sir/filecache.h bool _sir_fcache_pred_path(const void* match, const sirfile* iter);
match              65 src/libsir/include/sir/filecache.h bool _sir_fcache_pred_id(const void* match, const sirfile* iter);
match              66 src/libsir/include/sir/filecache.h sirfile* _sir_fcache_find(const sirfcache* sfc, const void* match, sir_fcache_pred pred);
match              48 src/libsir/include/sir/plugins.h bool _sir_plugin_cache_pred_id(const void* match, const sir_plugin* iter);
match              52 src/libsir/include/sir/plugins.h sir_plugin* _sir_plugin_cache_find(const sir_plugincache* spc, const void* match, sir_plugin_pred pred);
match             491 src/libsir/src/sirfilecache.c bool _sir_fcache_pred_path(const void* match, const sirfile* iter) {
match             492 src/libsir/src/sirfilecache.c     const char* path = (const char*)match;
match             561 src/libsir/src/sirfilecache.c bool _sir_fcache_pred_id(const void* match, const sirfile* iter) {
match             562 src/libsir/src/sirfilecache.c     const sirfileid* id = (const sirfileid*)match;
match             566 src/libsir/src/sirfilecache.c sirfile* _sir_fcache_find(const sirfcache* sfc, const void* match, sir_fcache_pred pred) {
match             567 src/libsir/src/sirfilecache.c     bool valid = _sir_validptr(sfc) && _sir_validptr(match) && _sir_validfnptr(pred);
match             571 src/libsir/src/sirfilecache.c             if (pred(match, sfc->files[n]))
match             649 src/libsir/src/sirinternal.c     bool match             = false;
match             658 src/libsir/src/sirinternal.c         match = cfg.state.last.hash == hash;
match             661 src/libsir/src/sirinternal.c     if (match) {
match             336 src/libsir/src/sirplugins.c bool _sir_plugin_cache_pred_id(const void* match, const sir_plugin* iter) {
match             338 src/libsir/src/sirplugins.c     return iter->id == *((const sirpluginid*)match);
match             340 src/libsir/src/sirplugins.c     SIR_UNUSED(match);
match             385 src/libsir/src/sirplugins.c sir_plugin* _sir_plugin_cache_find(const sir_plugincache* spc, const void* match,
match             388 src/libsir/src/sirplugins.c     if (!_sir_validptr(spc) || !_sir_validptr(match) || !_sir_validfnptr(pred))
match             392 src/libsir/src/sirplugins.c         if (pred(match, spc->plugins[n]))
match             399 src/libsir/src/sirplugins.c     SIR_UNUSED(match);
match            4292 src/simh/scp.c                     r = mptr->valid (uptr, mptr->match, cvptr, mptr->desc);
match            4300 src/simh/scp.c                 else *((int32 *) mptr->desc) = mptr->match;
match            4308 src/simh/scp.c                     ((r = mptr->valid (uptr, mptr->match, cvptr, mptr->desc)) != SCPE_OK))
match            4311 src/simh/scp.c                     (mptr->match & mptr->mask);         /* set new value */
match            5880 src/simh/scp.c             ((MTAB_VUN == (uint32)flag) && ((uptr->flags & mptr->mask) == mptr->match)))) {
match            5899 src/simh/scp.c     r = mptr->disp (st, uptr, mptr->match, (CONST void *)(cptr? cptr: mptr->desc));
match            9764 src/simh/scp.c CONST EXPTAB *sim_exp_fnd (CONST EXPECT *exp, const char *match, size_t start_rule)
match            9771 src/simh/scp.c     if (!strcmp (exp->rules[i].match_pattern, match))
match            9784 src/simh/scp.c FREE (ep->match);                                       /* deallocate match string */
match            9799 src/simh/scp.c t_stat sim_exp_clr (EXPECT *exp, const char *match)
match            9801 src/simh/scp.c EXPTAB *ep = (EXPTAB *)sim_exp_fnd (exp, match, 0);
match            9805 src/simh/scp.c     ep = (EXPTAB *)sim_exp_fnd (exp, match, ep - exp->rules);
match            9817 src/simh/scp.c     FREE (exp->rules[i].match);                         /* deallocate match string */
match            9833 src/simh/scp.c t_stat sim_exp_set (EXPECT *exp, const char *match, int32 cnt, uint32 after, int32 switches, const char *act)
match            9841 src/simh/scp.c match_buf = (uint8 *)calloc (strlen (match) + 1, 1);
match            9853 src/simh/scp.c     sim_data_trace(exp->dptr, exp->dptr->units, (const uint8 *)match, "", strlen(match)+1, "Expect Match String", exp->dbit);
match            9854 src/simh/scp.c     if (SCPE_OK != sim_decode_quoted_string (match, match_buf, &match_size)) {
match            9861 src/simh/scp.c     if ((0 == strcmp (match, exp->rules[i].match_pattern)) &&
match            9884 src/simh/scp.c ep->match_pattern = (char *)malloc (strlen (match) + 1);
match            9886 src/simh/scp.c     strcpy (ep->match_pattern, match);
match            9889 src/simh/scp.c match_buf = (uint8 *)calloc (strlen (match) + 1, 1);
match            9900 src/simh/scp.c     sim_data_trace(exp->dptr, exp->dptr->units, (const uint8 *)match, "", strlen(match)+1, "Expect Match String", exp->dbit);
match            9901 src/simh/scp.c     sim_decode_quoted_string (match, match_buf, &match_size);
match            9902 src/simh/scp.c     ep->match = match_buf;
match            9905 src/simh/scp.c ep->match_pattern = (char *)malloc (strlen (match) + 1);
match            9918 src/simh/scp.c strcpy (ep->match_pattern, match);
match            9966 src/simh/scp.c t_stat sim_exp_show (FILE *st, CONST EXPECT *exp, const char *match)
match            9968 src/simh/scp.c CONST EXPTAB *ep = (CONST EXPTAB *)sim_exp_fnd (exp, match, 0);
match            9989 src/simh/scp.c if (!*match)
match            9992 src/simh/scp.c     (void)fprintf (st, "No Rules match '%s'\r\n", match);
match            9997 src/simh/scp.c     ep = (CONST EXPTAB *)sim_exp_fnd (exp, match, 1 + (ep - exp->rules));
match            10045 src/simh/scp.c                     char *mstr = sim_encode_quoted_string (&ep->match[ep->size-exp->buf_ins], exp->buf_ins);
match            10053 src/simh/scp.c                 if (memcmp (exp->buf, &ep->match[ep->size-exp->buf_ins], exp->buf_ins))
match            10058 src/simh/scp.c                 char *mstr = sim_encode_quoted_string (ep->match, ep->size-exp->buf_ins);
match            10067 src/simh/scp.c             if (memcmp (&exp->buf[exp->buf_size-(ep->size-exp->buf_ins)], ep->match, ep->size-exp->buf_ins))
match            10074 src/simh/scp.c                 char *mstr = sim_encode_quoted_string (ep->match, ep->size);
match            10083 src/simh/scp.c             if (memcmp (&exp->buf[exp->buf_ins-ep->size], ep->match, ep->size))
match            11253 src/simh/scp.c size_t i, match;
match            11259 src/simh/scp.c match = 0;
match            11276 src/simh/scp.c         if (match)
match            11278 src/simh/scp.c         match = i+1;
match            11281 src/simh/scp.c return match;
match            11293 src/simh/scp.c size_t match;
match            11395 src/simh/scp.c     match =  matchHelpTopicName (topic, gbuf);
match            11396 src/simh/scp.c     if (match == HLP_MATCH_WILDCARD) {
match            11402 src/simh/scp.c     if (match == HLP_MATCH_AMBIGUOUS) {
match            11406 src/simh/scp.c     if (match == HLP_MATCH_NONE) {
match            11410 src/simh/scp.c     topic = topic->children[match-1];
match            11519 src/simh/scp.c     match = matchHelpTopicName (topic, gbuf);
match            11520 src/simh/scp.c     if (match == HLP_MATCH_AMBIGUOUS) {
match            11526 src/simh/scp.c     if (match == HLP_MATCH_NONE) {
match            11533 src/simh/scp.c     topic = topic->children[match-1];
match             189 src/simh/scp.h t_stat sim_exp_set (EXPECT *exp, const char *match, int32 cnt, uint32 after, int32 switches, const char *act);
match             190 src/simh/scp.h t_stat sim_exp_clr (EXPECT *exp, const char *match);
match             192 src/simh/scp.h t_stat sim_exp_show (FILE *st, CONST EXPECT *exp, const char *match);
match             562 src/simh/sim_defs.h     uint32              match;                           /* match */
match             626 src/simh/sim_defs.h     uint8               *match;                          /* match string */