Lines Matching refs:C
383 C(FILE_NOT_FOUND, "Failed to find the given file"), \
384 C(NO_REGULAR_FILE, "Not a regular file"), \
385 C(BAD_REFCNT, "Invalid reference counter offset"), \
386 C(REFCNT_OPEN_BRACE, "Reference counter brace is not closed"), \
387 C(BAD_REFCNT_SUFFIX, "Reference counter has wrong suffix"), \
388 C(BAD_UPROBE_OFFS, "Invalid uprobe offset"), \
389 C(MAXACT_NO_KPROBE, "Maxactive is not for kprobe"), \
390 C(BAD_MAXACT, "Invalid maxactive number"), \
391 C(MAXACT_TOO_BIG, "Maxactive is too big"), \
392 C(BAD_PROBE_ADDR, "Invalid probed address or symbol"), \
393 C(BAD_RETPROBE, "Retprobe address must be an function entry"), \
394 C(BAD_ADDR_SUFFIX, "Invalid probed address suffix"), \
395 C(NO_GROUP_NAME, "Group name is not specified"), \
396 C(GROUP_TOO_LONG, "Group name is too long"), \
397 C(BAD_GROUP_NAME, "Group name must follow the same rules as C identifiers"), \
398 C(NO_EVENT_NAME, "Event name is not specified"), \
399 C(EVENT_TOO_LONG, "Event name is too long"), \
400 C(BAD_EVENT_NAME, "Event name must follow the same rules as C identifiers"), \
401 C(RETVAL_ON_PROBE, "$retval is not available on probe"), \
402 C(BAD_STACK_NUM, "Invalid stack number"), \
403 C(BAD_ARG_NUM, "Invalid argument number"), \
404 C(BAD_VAR, "Invalid $-valiable specified"), \
405 C(BAD_REG_NAME, "Invalid register name"), \
406 C(BAD_MEM_ADDR, "Invalid memory address"), \
407 C(BAD_IMM, "Invalid immediate value"), \
408 C(IMMSTR_NO_CLOSE, "String is not closed with '\"'"), \
409 C(FILE_ON_KPROBE, "File offset is not available with kprobe"), \
410 C(BAD_FILE_OFFS, "Invalid file offset value"), \
411 C(SYM_ON_UPROBE, "Symbol is not available with uprobe"), \
412 C(TOO_MANY_OPS, "Dereference is too much nested"), \
413 C(DEREF_NEED_BRACE, "Dereference needs a brace"), \
414 C(BAD_DEREF_OFFS, "Invalid dereference offset"), \
415 C(DEREF_OPEN_BRACE, "Dereference brace is not closed"), \
416 C(COMM_CANT_DEREF, "$comm can not be dereferenced"), \
417 C(BAD_FETCH_ARG, "Invalid fetch argument"), \
418 C(ARRAY_NO_CLOSE, "Array is not closed"), \
419 C(BAD_ARRAY_SUFFIX, "Array has wrong suffix"), \
420 C(BAD_ARRAY_NUM, "Invalid array size"), \
421 C(ARRAY_TOO_BIG, "Array number is too big"), \
422 C(BAD_TYPE, "Unknown type is specified"), \
423 C(BAD_STRING, "String accepts only memory argument"), \
424 C(BAD_BITFIELD, "Invalid bitfield"), \
425 C(ARG_NAME_TOO_LONG, "Argument name is too long"), \
426 C(NO_ARG_NAME, "Argument name is not specified"), \
427 C(BAD_ARG_NAME, "Argument name must follow the same rules as C identifiers"), \
428 C(USED_ARG_NAME, "This argument name is already used"), \
429 C(ARG_TOO_LONG, "Argument expression is too long"), \
430 C(NO_ARG_BODY, "No argument expression"), \
431 C(BAD_INSN_BNDRY, "Probe point is not an instruction boundary"),\
432 C(FAIL_REG_PROBE, "Failed to register probe event"),\
433 C(DIFF_PROBE_TYPE, "Probe type is different from existing probe"),\
434 C(DIFF_ARG_TYPE, "Argument type or name is different from existing probe"),\
435 C(SAME_PROBE, "There is already the exact same probe event"),
437 #undef C
438 #define C(a, b) TP_ERR_##a macro