Lines Matching refs:C

443 	C(FILE_NOT_FOUND,	"Failed to find the given file"),	\
444 C(NO_REGULAR_FILE, "Not a regular file"), \
445 C(BAD_REFCNT, "Invalid reference counter offset"), \
446 C(REFCNT_OPEN_BRACE, "Reference counter brace is not closed"), \
447 C(BAD_REFCNT_SUFFIX, "Reference counter has wrong suffix"), \
448 C(BAD_UPROBE_OFFS, "Invalid uprobe offset"), \
449 C(BAD_MAXACT_TYPE, "Maxactive is only for function exit"), \
450 C(BAD_MAXACT, "Invalid maxactive number"), \
451 C(MAXACT_TOO_BIG, "Maxactive is too big"), \
452 C(BAD_PROBE_ADDR, "Invalid probed address or symbol"), \
453 C(NON_UNIQ_SYMBOL, "The symbol is not unique"), \
454 C(BAD_RETPROBE, "Retprobe address must be an function entry"), \
455 C(NO_TRACEPOINT, "Tracepoint is not found"), \
456 C(BAD_ADDR_SUFFIX, "Invalid probed address suffix"), \
457 C(NO_GROUP_NAME, "Group name is not specified"), \
458 C(GROUP_TOO_LONG, "Group name is too long"), \
459 C(BAD_GROUP_NAME, "Group name must follow the same rules as C identifiers"), \
460 C(NO_EVENT_NAME, "Event name is not specified"), \
461 C(EVENT_TOO_LONG, "Event name is too long"), \
462 C(BAD_EVENT_NAME, "Event name must follow the same rules as C identifiers"), \
463 C(EVENT_EXIST, "Given group/event name is already used by another event"), \
464 C(RETVAL_ON_PROBE, "$retval is not available on probe"), \
465 C(NO_RETVAL, "This function returns 'void' type"), \
466 C(BAD_STACK_NUM, "Invalid stack number"), \
467 C(BAD_ARG_NUM, "Invalid argument number"), \
468 C(BAD_VAR, "Invalid $-valiable specified"), \
469 C(BAD_REG_NAME, "Invalid register name"), \
470 C(BAD_MEM_ADDR, "Invalid memory address"), \
471 C(BAD_IMM, "Invalid immediate value"), \
472 C(IMMSTR_NO_CLOSE, "String is not closed with '\"'"), \
473 C(FILE_ON_KPROBE, "File offset is not available with kprobe"), \
474 C(BAD_FILE_OFFS, "Invalid file offset value"), \
475 C(SYM_ON_UPROBE, "Symbol is not available with uprobe"), \
476 C(TOO_MANY_OPS, "Dereference is too much nested"), \
477 C(DEREF_NEED_BRACE, "Dereference needs a brace"), \
478 C(BAD_DEREF_OFFS, "Invalid dereference offset"), \
479 C(DEREF_OPEN_BRACE, "Dereference brace is not closed"), \
480 C(COMM_CANT_DEREF, "$comm can not be dereferenced"), \
481 C(BAD_FETCH_ARG, "Invalid fetch argument"), \
482 C(ARRAY_NO_CLOSE, "Array is not closed"), \
483 C(BAD_ARRAY_SUFFIX, "Array has wrong suffix"), \
484 C(BAD_ARRAY_NUM, "Invalid array size"), \
485 C(ARRAY_TOO_BIG, "Array number is too big"), \
486 C(BAD_TYPE, "Unknown type is specified"), \
487 C(BAD_STRING, "String accepts only memory argument"), \
488 C(BAD_SYMSTRING, "Symbol String doesn't accept data/userdata"), \
489 C(BAD_BITFIELD, "Invalid bitfield"), \
490 C(ARG_NAME_TOO_LONG, "Argument name is too long"), \
491 C(NO_ARG_NAME, "Argument name is not specified"), \
492 C(BAD_ARG_NAME, "Argument name must follow the same rules as C identifiers"), \
493 C(USED_ARG_NAME, "This argument name is already used"), \
494 C(ARG_TOO_LONG, "Argument expression is too long"), \
495 C(NO_ARG_BODY, "No argument expression"), \
496 C(BAD_INSN_BNDRY, "Probe point is not an instruction boundary"),\
497 C(FAIL_REG_PROBE, "Failed to register probe event"),\
498 C(DIFF_PROBE_TYPE, "Probe type is different from existing probe"),\
499 C(DIFF_ARG_TYPE, "Argument type or name is different from existing probe"),\
500 C(SAME_PROBE, "There is already the exact same probe event"),\
501 C(NO_EVENT_INFO, "This requires both group and event name to attach"),\
502 C(BAD_ATTACH_EVENT, "Attached event does not exist"),\
503 C(BAD_ATTACH_ARG, "Attached event does not have this field"),\
504 C(NO_EP_FILTER, "No filter rule after 'if'"), \
505 C(NOSUP_BTFARG, "BTF is not available or not supported"), \
506 C(NO_BTFARG, "This variable is not found at this probe point"),\
507 C(NO_BTF_ENTRY, "No BTF entry for this probe point"), \
508 C(BAD_VAR_ARGS, "$arg* must be an independent parameter without name etc."),\
509 C(NOFENTRY_ARGS, "$arg* can be used only on function entry"), \
510 C(DOUBLE_ARGS, "$arg* can be used only once in the parameters"), \
511 C(ARGS_2LONG, "$arg* failed because the argument list is too long"), \
512 C(ARGIDX_2BIG, "$argN index is too big"), \
513 C(NO_PTR_STRCT, "This is not a pointer to union/structure."), \
514 C(NOSUP_DAT_ARG, "Non pointer structure/union argument is not supported."),\
515 C(BAD_HYPHEN, "Failed to parse single hyphen. Forgot '>'?"), \
516 C(NO_BTF_FIELD, "This field is not found."), \
517 C(BAD_BTF_TID, "Failed to get BTF type info."),\
518 C(BAD_TYPE4STR, "This type does not fit for string."),
520 #undef C
521 #define C(a, b) TP_ERR_##a macro