Lines Matching refs:C

401 	C(FILE_NOT_FOUND,	"Failed to find the given file"),	\
402 C(NO_REGULAR_FILE, "Not a regular file"), \
403 C(BAD_REFCNT, "Invalid reference counter offset"), \
404 C(REFCNT_OPEN_BRACE, "Reference counter brace is not closed"), \
405 C(BAD_REFCNT_SUFFIX, "Reference counter has wrong suffix"), \
406 C(BAD_UPROBE_OFFS, "Invalid uprobe offset"), \
407 C(MAXACT_NO_KPROBE, "Maxactive is not for kprobe"), \
408 C(BAD_MAXACT, "Invalid maxactive number"), \
409 C(MAXACT_TOO_BIG, "Maxactive is too big"), \
410 C(BAD_PROBE_ADDR, "Invalid probed address or symbol"), \
411 C(BAD_RETPROBE, "Retprobe address must be an function entry"), \
412 C(BAD_ADDR_SUFFIX, "Invalid probed address suffix"), \
413 C(NO_GROUP_NAME, "Group name is not specified"), \
414 C(GROUP_TOO_LONG, "Group name is too long"), \
415 C(BAD_GROUP_NAME, "Group name must follow the same rules as C identifiers"), \
416 C(NO_EVENT_NAME, "Event name is not specified"), \
417 C(EVENT_TOO_LONG, "Event name is too long"), \
418 C(BAD_EVENT_NAME, "Event name must follow the same rules as C identifiers"), \
419 C(EVENT_EXIST, "Given group/event name is already used by another event"), \
420 C(RETVAL_ON_PROBE, "$retval is not available on probe"), \
421 C(BAD_STACK_NUM, "Invalid stack number"), \
422 C(BAD_ARG_NUM, "Invalid argument number"), \
423 C(BAD_VAR, "Invalid $-valiable specified"), \
424 C(BAD_REG_NAME, "Invalid register name"), \
425 C(BAD_MEM_ADDR, "Invalid memory address"), \
426 C(BAD_IMM, "Invalid immediate value"), \
427 C(IMMSTR_NO_CLOSE, "String is not closed with '\"'"), \
428 C(FILE_ON_KPROBE, "File offset is not available with kprobe"), \
429 C(BAD_FILE_OFFS, "Invalid file offset value"), \
430 C(SYM_ON_UPROBE, "Symbol is not available with uprobe"), \
431 C(TOO_MANY_OPS, "Dereference is too much nested"), \
432 C(DEREF_NEED_BRACE, "Dereference needs a brace"), \
433 C(BAD_DEREF_OFFS, "Invalid dereference offset"), \
434 C(DEREF_OPEN_BRACE, "Dereference brace is not closed"), \
435 C(COMM_CANT_DEREF, "$comm can not be dereferenced"), \
436 C(BAD_FETCH_ARG, "Invalid fetch argument"), \
437 C(ARRAY_NO_CLOSE, "Array is not closed"), \
438 C(BAD_ARRAY_SUFFIX, "Array has wrong suffix"), \
439 C(BAD_ARRAY_NUM, "Invalid array size"), \
440 C(ARRAY_TOO_BIG, "Array number is too big"), \
441 C(BAD_TYPE, "Unknown type is specified"), \
442 C(BAD_STRING, "String accepts only memory argument"), \
443 C(BAD_SYMSTRING, "Symbol String doesn't accept data/userdata"), \
444 C(BAD_BITFIELD, "Invalid bitfield"), \
445 C(ARG_NAME_TOO_LONG, "Argument name is too long"), \
446 C(NO_ARG_NAME, "Argument name is not specified"), \
447 C(BAD_ARG_NAME, "Argument name must follow the same rules as C identifiers"), \
448 C(USED_ARG_NAME, "This argument name is already used"), \
449 C(ARG_TOO_LONG, "Argument expression is too long"), \
450 C(NO_ARG_BODY, "No argument expression"), \
451 C(BAD_INSN_BNDRY, "Probe point is not an instruction boundary"),\
452 C(FAIL_REG_PROBE, "Failed to register probe event"),\
453 C(DIFF_PROBE_TYPE, "Probe type is different from existing probe"),\
454 C(DIFF_ARG_TYPE, "Argument type or name is different from existing probe"),\
455 C(SAME_PROBE, "There is already the exact same probe event"),\
456 C(NO_EVENT_INFO, "This requires both group and event name to attach"),\
457 C(BAD_ATTACH_EVENT, "Attached event does not exist"),\
458 C(BAD_ATTACH_ARG, "Attached event does not have this field"),\
459 C(NO_EP_FILTER, "No filter rule after 'if'"),
461 #undef C
462 #define C(a, b) TP_ERR_##a macro