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            4095 src/simh/scp.c                     r = mptr->valid (uptr, mptr->match, cvptr, mptr->desc);
match            4103 src/simh/scp.c                 else *((int32 *) mptr->desc) = mptr->match;
match            4111 src/simh/scp.c                     ((r = mptr->valid (uptr, mptr->match, cvptr, mptr->desc)) != SCPE_OK))
match            4114 src/simh/scp.c                     (mptr->match & mptr->mask);         /* set new value */
match            5698 src/simh/scp.c             ((MTAB_VUN == (uint32)flag) && ((uptr->flags & mptr->mask) == mptr->match)))) {
match            5717 src/simh/scp.c     r = mptr->disp (st, uptr, mptr->match, (CONST void *)(cptr? cptr: mptr->desc));
match            9582 src/simh/scp.c CONST EXPTAB *sim_exp_fnd (CONST EXPECT *exp, const char *match, size_t start_rule)
match            9589 src/simh/scp.c     if (!strcmp (exp->rules[i].match_pattern, match))
match            9602 src/simh/scp.c FREE (ep->match);                                       /* deallocate match string */
match            9617 src/simh/scp.c t_stat sim_exp_clr (EXPECT *exp, const char *match)
match            9619 src/simh/scp.c EXPTAB *ep = (EXPTAB *)sim_exp_fnd (exp, match, 0);
match            9623 src/simh/scp.c     ep = (EXPTAB *)sim_exp_fnd (exp, match, ep - exp->rules);
match            9635 src/simh/scp.c     FREE (exp->rules[i].match);                         /* deallocate match string */
match            9651 src/simh/scp.c t_stat sim_exp_set (EXPECT *exp, const char *match, int32 cnt, uint32 after, int32 switches, const char *act)
match            9659 src/simh/scp.c match_buf = (uint8 *)calloc (strlen (match) + 1, 1);
match            9671 src/simh/scp.c     sim_data_trace(exp->dptr, exp->dptr->units, (const uint8 *)match, "", strlen(match)+1, "Expect Match String", exp->dbit);
match            9672 src/simh/scp.c     if (SCPE_OK != sim_decode_quoted_string (match, match_buf, &match_size)) {
match            9679 src/simh/scp.c     if ((0 == strcmp (match, exp->rules[i].match_pattern)) &&
match            9702 src/simh/scp.c ep->match_pattern = (char *)malloc (strlen (match) + 1);
match            9704 src/simh/scp.c     strcpy (ep->match_pattern, match);
match            9707 src/simh/scp.c match_buf = (uint8 *)calloc (strlen (match) + 1, 1);
match            9718 src/simh/scp.c     sim_data_trace(exp->dptr, exp->dptr->units, (const uint8 *)match, "", strlen(match)+1, "Expect Match String", exp->dbit);
match            9719 src/simh/scp.c     sim_decode_quoted_string (match, match_buf, &match_size);
match            9720 src/simh/scp.c     ep->match = match_buf;
match            9723 src/simh/scp.c ep->match_pattern = (char *)malloc (strlen (match) + 1);
match            9736 src/simh/scp.c strcpy (ep->match_pattern, match);
match            9784 src/simh/scp.c t_stat sim_exp_show (FILE *st, CONST EXPECT *exp, const char *match)
match            9786 src/simh/scp.c CONST EXPTAB *ep = (CONST EXPTAB *)sim_exp_fnd (exp, match, 0);
match            9807 src/simh/scp.c if (!*match)
match            9810 src/simh/scp.c     (void)fprintf (st, "No Rules match '%s'\n", match);
match            9815 src/simh/scp.c     ep = (CONST EXPTAB *)sim_exp_fnd (exp, match, 1 + (ep - exp->rules));
match            9863 src/simh/scp.c                     char *mstr = sim_encode_quoted_string (&ep->match[ep->size-exp->buf_ins], exp->buf_ins);
match            9871 src/simh/scp.c                 if (memcmp (exp->buf, &ep->match[ep->size-exp->buf_ins], exp->buf_ins))
match            9876 src/simh/scp.c                 char *mstr = sim_encode_quoted_string (ep->match, ep->size-exp->buf_ins);
match            9885 src/simh/scp.c             if (memcmp (&exp->buf[exp->buf_size-(ep->size-exp->buf_ins)], ep->match, ep->size-exp->buf_ins))
match            9892 src/simh/scp.c                 char *mstr = sim_encode_quoted_string (ep->match, ep->size);
match            9901 src/simh/scp.c             if (memcmp (&exp->buf[exp->buf_ins-ep->size], ep->match, ep->size))
match            11060 src/simh/scp.c size_t i, match;
match            11066 src/simh/scp.c match = 0;
match            11083 src/simh/scp.c         if (match)
match            11085 src/simh/scp.c         match = i+1;
match            11088 src/simh/scp.c return match;
match            11100 src/simh/scp.c size_t match;
match            11202 src/simh/scp.c     match =  matchHelpTopicName (topic, gbuf);
match            11203 src/simh/scp.c     if (match == HLP_MATCH_WILDCARD) {
match            11208 src/simh/scp.c     if (match == HLP_MATCH_AMBIGUOUS) {
match            11212 src/simh/scp.c     if (match == HLP_MATCH_NONE) {
match            11216 src/simh/scp.c     topic = topic->children[match-1];
match            11324 src/simh/scp.c     match = matchHelpTopicName (topic, gbuf);
match            11325 src/simh/scp.c     if (match == HLP_MATCH_AMBIGUOUS) {
match            11331 src/simh/scp.c     if (match == HLP_MATCH_NONE) {
match            11338 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 */