code 192 lib/search.h void mc_search_set_error (mc_search_t * lc_mc_search, mc_search_error_t code, const gchar * format, ...) code 505 lib/search/search.c mc_search_set_error (mc_search_t *lc_mc_search, mc_search_error_t code, const gchar *format, ...) code 507 lib/search/search.c lc_mc_search->error = code; code 144 lib/strutil/strutil.c int code = mcerror->code; code 149 lib/strutil/strutil.c switch (code) code 242 lib/tty/key.c int code; /* The code returned, valid if child == NULL */ code 252 lib/tty/key.c int code; code 666 lib/tty/key.c create_sequence (const char *seq, int code, int action) code 681 lib/tty/key.c p->code = code; code 697 lib/tty/key.c for (i = 0; kd[i].code != 0; i++) code 698 lib/tty/key.c define_sequence (kd[i].code, kd[i].seq, kd[i].action); code 1027 lib/tty/key.c correct_key_code (int code) code 1029 lib/tty/key.c unsigned int c = code & ~KEY_M_MASK; /* code without modifier */ code 1030 lib/tty/key.c unsigned int mod = code & KEY_M_MASK; /* modifier */ code 1223 lib/tty/key.c return n1->code - n2->code; code 1274 lib/tty/key.c return (*res)->code; code 1285 lib/tty/key.c lookup_keycode (const long code, int *idx) code 1287 lib/tty/key.c if (code != 0) code 1289 lib/tty/key.c const key_code_name_t key = { code, NULL, NULL, NULL }; code 1632 lib/tty/key.c define_sequence (int code, const char *seq, int action) code 1645 lib/tty/key.c base->child = create_sequence (seq + 1, code, action); code 1649 lib/tty/key.c base->code = code; code 1664 lib/tty/key.c base->next = create_sequence (seq, code, action); code 1675 lib/tty/key.c keys = create_sequence (seq, code, action); code 1838 lib/tty/key.c c = this->code; code 49 lib/tty/key.h int code; code 72 lib/tty/key.h gboolean define_sequence (int code, const char *seq, int action); code 72 lib/tty/tty-internal.c mcerror->message, mcerror->code); code 85 lib/tty/tty-internal.c mcerror->message, mcerror->code); code 94 lib/tty/tty-internal.c mcerror->message, mcerror->code); code 203 lib/tty/tty-slang.c do_define_key (int code, const char *strcap) code 209 lib/tty/tty-slang.c define_sequence (code, seq, MCKEY_NOACTION); code 1487 lib/util.c mc_propagate_error (GError **dest, int code, const char *format, ...) code 1495 lib/util.c tmp_error = g_error_new_valist (MC_ERROR, code, format, args); code 1513 lib/util.c mc_replace_error (GError **dest, int code, const char *format, ...) code 1521 lib/util.c tmp_error = g_error_new_valist (MC_ERROR, code, format, args); code 272 lib/util.h void mc_propagate_error (GError ** dest, int code, const char *format, ...) G_GNUC_PRINTF (3, 4); code 273 lib/util.h void mc_replace_error (GError ** dest, int code, const char *format, ...) G_GNUC_PRINTF (3, 4); code 450 lib/widget/wtools.c mc_error_message (GError **mcerror, int *code) code 455 lib/widget/wtools.c if ((*mcerror)->code == 0) code 458 lib/widget/wtools.c message (D_ERROR, MSG_ERROR, _("%s (%d)"), (*mcerror)->message, (*mcerror)->code); code 460 lib/widget/wtools.c if (code != NULL) code 461 lib/widget/wtools.c *code = (*mcerror)->code; code 86 lib/widget/wtools.h gboolean mc_error_message (GError ** mcerror, int *code); code 669 src/args.c mc_replace_error (mcerror, (*mcerror)->code, "%s\n\n%s\n", (*mcerror)->message, code 678 src/args.c mc_replace_error (mcerror, (*mcerror)->code, "%s", full_help_str->str); code 818 src/diffviewer/ydiff.c int code; code 838 src/diffviewer/ydiff.c code = dview_pclose (f); code 840 src/diffviewer/ydiff.c if (rv < 0 || code == -1 || !WIFEXITED (code) || WEXITSTATUS (code) == 2) code 106 src/editor/spell.c const char *code; code 149 src/editor/spell.c spell_decode_lang (const char *code) code 153 src/editor/spell.c for (i = 0; spell_codes_map[i].code != NULL; i++) code 155 src/editor/spell.c if (strcmp (spell_codes_map[i].code, code) == 0) code 159 src/editor/spell.c return code; code 222 src/editor/spell.c const char *code; code 224 src/editor/spell.c code = mc_aspell_config_retrieve (global_speller->config, "lang"); code 225 src/editor/spell.c return spell_decode_lang (code); code 117 src/learn.c seq_ok = define_sequence (key_name_conv_tab[action - B_USER].code, seq, MCKEY_NOACTION); code 177 src/learn.c if (key_name_conv_tab[i].code != c || learnkeys[i].ok) code 247 src/vfs/ftpfs/ftpfs.c static int code; code 399 src/vfs/ftpfs/ftpfs.c code = 421; code 404 src/vfs/ftpfs/ftpfs.c switch (sscanf (answer, "%d", &code)) code 409 src/vfs/ftpfs/ftpfs.c code = 500; code 422 src/vfs/ftpfs/ftpfs.c code = 421; code 426 src/vfs/ftpfs/ftpfs.c if ((sscanf (answer, "%d", &i) > 0) && (code == i) && (answer[3] == ' ')) code 432 src/vfs/ftpfs/ftpfs.c return code / 100; code 513 src/vfs/ftpfs/ftpfs.c code = 421; code 543 src/vfs/ftpfs/ftpfs.c if ((wait_reply & WANT_STRING) != 0 && !retry && level == 0 && code == 421) code 689 src/vfs/ftpfs/ftpfs.c code = ftpfs_command (me, super, WAIT_REPLY, "PASS %s", pass); code 690 src/vfs/ftpfs/ftpfs.c if (code == CONTINUE) code 702 src/vfs/ftpfs/ftpfs.c code = ftpfs_command (me, super, WAIT_REPLY, "ACCT %s", op); code 705 src/vfs/ftpfs/ftpfs.c if (code != COMPLETE) code 1578 src/vfs/ftpfs/ftpfs.c if ((ftpfs_get_reply (me, ftp_super->sock, NULL, 0) == TRANSIENT) && (code == 426)) code 230 src/vfs/shell/shell.c int code; code 233 src/vfs/shell/shell.c if (sscanf (s, "%d", &code) == 0) code 235 src/vfs/shell/shell.c code = 500; code 238 src/vfs/shell/shell.c if (code < 100) code 239 src/vfs/shell/shell.c return was_garbage ? ERROR : (code == 0 ? COMPLETE : PRELIM); code 240 src/vfs/shell/shell.c return code / 100; code 987 src/vfs/shell/shell.c int code; code 1036 src/vfs/shell/shell.c code = code 1043 src/vfs/shell/shell.c if (code != PRELIM) code 165 tests/lib/serialize.c ck_assert_int_eq (error->code, data->expected_error_code); code 303 tests/lib/serialize.c ck_assert_int_eq (error->code, data->expected_error_code);