Lines Matching refs:C

485 	C(FILE_NOT_FOUND,	"Failed to find the given file"),	\
486 C(NO_REGULAR_FILE, "Not a regular file"), \
487 C(BAD_REFCNT, "Invalid reference counter offset"), \
488 C(REFCNT_OPEN_BRACE, "Reference counter brace is not closed"), \
489 C(BAD_REFCNT_SUFFIX, "Reference counter has wrong suffix"), \
490 C(BAD_UPROBE_OFFS, "Invalid uprobe offset"), \
491 C(BAD_MAXACT_TYPE, "Maxactive is only for function exit"), \
492 C(BAD_MAXACT, "Invalid maxactive number"), \
493 C(MAXACT_TOO_BIG, "Maxactive is too big"), \
494 C(BAD_PROBE_ADDR, "Invalid probed address or symbol"), \
495 C(NON_UNIQ_SYMBOL, "The symbol is not unique"), \
496 C(BAD_RETPROBE, "Retprobe address must be an function entry"), \
497 C(NO_TRACEPOINT, "Tracepoint is not found"), \
498 C(BAD_TP_NAME, "Invalid character in tracepoint name"),\
499 C(BAD_ADDR_SUFFIX, "Invalid probed address suffix"), \
500 C(NO_GROUP_NAME, "Group name is not specified"), \
501 C(GROUP_TOO_LONG, "Group name is too long"), \
502 C(BAD_GROUP_NAME, "Group name must follow the same rules as C identifiers"), \
503 C(NO_EVENT_NAME, "Event name is not specified"), \
504 C(EVENT_TOO_LONG, "Event name is too long"), \
505 C(BAD_EVENT_NAME, "Event name must follow the same rules as C identifiers"), \
506 C(EVENT_EXIST, "Given group/event name is already used by another event"), \
507 C(RETVAL_ON_PROBE, "$retval is not available on probe"), \
508 C(NO_RETVAL, "This function returns 'void' type"), \
509 C(BAD_STACK_NUM, "Invalid stack number"), \
510 C(BAD_ARG_NUM, "Invalid argument number"), \
511 C(BAD_VAR, "Invalid $-valiable specified"), \
512 C(BAD_REG_NAME, "Invalid register name"), \
513 C(BAD_MEM_ADDR, "Invalid memory address"), \
514 C(BAD_IMM, "Invalid immediate value"), \
515 C(IMMSTR_NO_CLOSE, "String is not closed with '\"'"), \
516 C(FILE_ON_KPROBE, "File offset is not available with kprobe"), \
517 C(BAD_FILE_OFFS, "Invalid file offset value"), \
518 C(SYM_ON_UPROBE, "Symbol is not available with uprobe"), \
519 C(TOO_MANY_OPS, "Dereference is too much nested"), \
520 C(DEREF_NEED_BRACE, "Dereference needs a brace"), \
521 C(BAD_DEREF_OFFS, "Invalid dereference offset"), \
522 C(DEREF_OPEN_BRACE, "Dereference brace is not closed"), \
523 C(COMM_CANT_DEREF, "$comm can not be dereferenced"), \
524 C(BAD_FETCH_ARG, "Invalid fetch argument"), \
525 C(ARRAY_NO_CLOSE, "Array is not closed"), \
526 C(BAD_ARRAY_SUFFIX, "Array has wrong suffix"), \
527 C(BAD_ARRAY_NUM, "Invalid array size"), \
528 C(ARRAY_TOO_BIG, "Array number is too big"), \
529 C(BAD_TYPE, "Unknown type is specified"), \
530 C(BAD_STRING, "String accepts only memory argument"), \
531 C(BAD_SYMSTRING, "Symbol String doesn't accept data/userdata"), \
532 C(BAD_BITFIELD, "Invalid bitfield"), \
533 C(ARG_NAME_TOO_LONG, "Argument name is too long"), \
534 C(NO_ARG_NAME, "Argument name is not specified"), \
535 C(BAD_ARG_NAME, "Argument name must follow the same rules as C identifiers"), \
536 C(USED_ARG_NAME, "This argument name is already used"), \
537 C(ARG_TOO_LONG, "Argument expression is too long"), \
538 C(NO_ARG_BODY, "No argument expression"), \
539 C(BAD_INSN_BNDRY, "Probe point is not an instruction boundary"),\
540 C(FAIL_REG_PROBE, "Failed to register probe event"),\
541 C(DIFF_PROBE_TYPE, "Probe type is different from existing probe"),\
542 C(DIFF_ARG_TYPE, "Argument type or name is different from existing probe"),\
543 C(SAME_PROBE, "There is already the exact same probe event"),\
544 C(NO_EVENT_INFO, "This requires both group and event name to attach"),\
545 C(BAD_ATTACH_EVENT, "Attached event does not exist"),\
546 C(BAD_ATTACH_ARG, "Attached event does not have this field"),\
547 C(NO_EP_FILTER, "No filter rule after 'if'"), \
548 C(NOSUP_BTFARG, "BTF is not available or not supported"), \
549 C(NO_BTFARG, "This variable is not found at this probe point"),\
550 C(NO_BTF_ENTRY, "No BTF entry for this probe point"), \
551 C(BAD_VAR_ARGS, "$arg* must be an independent parameter without name etc."),\
552 C(NOFENTRY_ARGS, "$arg* can be used only on function entry or exit"), \
553 C(DOUBLE_ARGS, "$arg* can be used only once in the parameters"), \
554 C(ARGS_2LONG, "$arg* failed because the argument list is too long"), \
555 C(ARGIDX_2BIG, "$argN index is too big"), \
556 C(NO_PTR_STRCT, "This is not a pointer to union/structure."), \
557 C(NOSUP_DAT_ARG, "Non pointer structure/union argument is not supported."),\
558 C(BAD_HYPHEN, "Failed to parse single hyphen. Forgot '>'?"), \
559 C(NO_BTF_FIELD, "This field is not found."), \
560 C(BAD_BTF_TID, "Failed to get BTF type info."),\
561 C(BAD_TYPE4STR, "This type does not fit for string."),\
562 C(NEED_STRING_TYPE, "$comm and immediate-string only accepts string type"),\
563 C(TOO_MANY_ARGS, "Too many arguments are specified"), \
564 C(TOO_MANY_EARGS, "Too many entry arguments specified"),
566 #undef C
567 #define C(a, b) TP_ERR_##a macro