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             490 src/libsir/src/sirfilecache.c bool _sir_fcache_pred_path(const void* match, const sirfile* iter) {
match             491 src/libsir/src/sirfilecache.c     const char* path = (const char*)match;
match             560 src/libsir/src/sirfilecache.c bool _sir_fcache_pred_id(const void* match, const sirfile* iter) {
match             561 src/libsir/src/sirfilecache.c     const sirfileid* id = (const sirfileid*)match;
match             565 src/libsir/src/sirfilecache.c sirfile* _sir_fcache_find(const sirfcache* sfc, const void* match, sir_fcache_pred pred) {
match             566 src/libsir/src/sirfilecache.c     bool valid = _sir_validptr(sfc) && _sir_validptr(match) && _sir_validfnptr(pred);
match             570 src/libsir/src/sirfilecache.c             if (pred(match, sfc->files[n]))
match             648 src/libsir/src/sirinternal.c     bool match             = false;
match             657 src/libsir/src/sirinternal.c         match = cfg.state.last.hash == hash;
match             660 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            4107 src/simh/scp.c                     r = mptr->valid (uptr, mptr->match, cvptr, mptr->desc);
match            4115 src/simh/scp.c                 else *((int32 *) mptr->desc) = mptr->match;
match            4123 src/simh/scp.c                     ((r = mptr->valid (uptr, mptr->match, cvptr, mptr->desc)) != SCPE_OK))
match            4126 src/simh/scp.c                     (mptr->match & mptr->mask);         /* set new value */
match            5710 src/simh/scp.c             ((MTAB_VUN == (uint32)flag) && ((uptr->flags & mptr->mask) == mptr->match)))) {
match            5729 src/simh/scp.c     r = mptr->disp (st, uptr, mptr->match, (CONST void *)(cptr? cptr: mptr->desc));
match            9594 src/simh/scp.c CONST EXPTAB *sim_exp_fnd (CONST EXPECT *exp, const char *match, size_t start_rule)
match            9601 src/simh/scp.c     if (!strcmp (exp->rules[i].match_pattern, match))
match            9614 src/simh/scp.c FREE (ep->match);                                       /* deallocate match string */
match            9629 src/simh/scp.c t_stat sim_exp_clr (EXPECT *exp, const char *match)
match            9631 src/simh/scp.c EXPTAB *ep = (EXPTAB *)sim_exp_fnd (exp, match, 0);
match            9635 src/simh/scp.c     ep = (EXPTAB *)sim_exp_fnd (exp, match, ep - exp->rules);
match            9647 src/simh/scp.c     FREE (exp->rules[i].match);                         /* deallocate match string */
match            9663 src/simh/scp.c t_stat sim_exp_set (EXPECT *exp, const char *match, int32 cnt, uint32 after, int32 switches, const char *act)
match            9671 src/simh/scp.c match_buf = (uint8 *)calloc (strlen (match) + 1, 1);
match            9683 src/simh/scp.c     sim_data_trace(exp->dptr, exp->dptr->units, (const uint8 *)match, "", strlen(match)+1, "Expect Match String", exp->dbit);
match            9684 src/simh/scp.c     if (SCPE_OK != sim_decode_quoted_string (match, match_buf, &match_size)) {
match            9691 src/simh/scp.c     if ((0 == strcmp (match, exp->rules[i].match_pattern)) &&
match            9714 src/simh/scp.c ep->match_pattern = (char *)malloc (strlen (match) + 1);
match            9716 src/simh/scp.c     strcpy (ep->match_pattern, match);
match            9719 src/simh/scp.c match_buf = (uint8 *)calloc (strlen (match) + 1, 1);
match            9730 src/simh/scp.c     sim_data_trace(exp->dptr, exp->dptr->units, (const uint8 *)match, "", strlen(match)+1, "Expect Match String", exp->dbit);
match            9731 src/simh/scp.c     sim_decode_quoted_string (match, match_buf, &match_size);
match            9732 src/simh/scp.c     ep->match = match_buf;
match            9735 src/simh/scp.c ep->match_pattern = (char *)malloc (strlen (match) + 1);
match            9748 src/simh/scp.c strcpy (ep->match_pattern, match);
match            9796 src/simh/scp.c t_stat sim_exp_show (FILE *st, CONST EXPECT *exp, const char *match)
match            9798 src/simh/scp.c CONST EXPTAB *ep = (CONST EXPTAB *)sim_exp_fnd (exp, match, 0);
match            9819 src/simh/scp.c if (!*match)
match            9822 src/simh/scp.c     (void)fprintf (st, "No Rules match '%s'\n", match);
match            9827 src/simh/scp.c     ep = (CONST EXPTAB *)sim_exp_fnd (exp, match, 1 + (ep - exp->rules));
match            9875 src/simh/scp.c                     char *mstr = sim_encode_quoted_string (&ep->match[ep->size-exp->buf_ins], exp->buf_ins);
match            9883 src/simh/scp.c                 if (memcmp (exp->buf, &ep->match[ep->size-exp->buf_ins], exp->buf_ins))
match            9888 src/simh/scp.c                 char *mstr = sim_encode_quoted_string (ep->match, ep->size-exp->buf_ins);
match            9897 src/simh/scp.c             if (memcmp (&exp->buf[exp->buf_size-(ep->size-exp->buf_ins)], ep->match, ep->size-exp->buf_ins))
match            9904 src/simh/scp.c                 char *mstr = sim_encode_quoted_string (ep->match, ep->size);
match            9913 src/simh/scp.c             if (memcmp (&exp->buf[exp->buf_ins-ep->size], ep->match, ep->size))
match            11075 src/simh/scp.c size_t i, match;
match            11081 src/simh/scp.c match = 0;
match            11098 src/simh/scp.c         if (match)
match            11100 src/simh/scp.c         match = i+1;
match            11103 src/simh/scp.c return match;
match            11115 src/simh/scp.c size_t match;
match            11217 src/simh/scp.c     match =  matchHelpTopicName (topic, gbuf);
match            11218 src/simh/scp.c     if (match == HLP_MATCH_WILDCARD) {
match            11223 src/simh/scp.c     if (match == HLP_MATCH_AMBIGUOUS) {
match            11227 src/simh/scp.c     if (match == HLP_MATCH_NONE) {
match            11231 src/simh/scp.c     topic = topic->children[match-1];
match            11339 src/simh/scp.c     match = matchHelpTopicName (topic, gbuf);
match            11340 src/simh/scp.c     if (match == HLP_MATCH_AMBIGUOUS) {
match            11346 src/simh/scp.c     if (match == HLP_MATCH_NONE) {
match            11353 src/simh/scp.c     topic = topic->children[match-1];
match             187 src/simh/scp.h t_stat sim_exp_set (EXPECT *exp, const char *match, int32 cnt, uint32 after, int32 switches, const char *act);
match             188 src/simh/scp.h t_stat sim_exp_clr (EXPECT *exp, const char *match);
match             190 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 */