Searched refs:FUN (Results 1 – 4 of 4) sorted by relevance
/aosp12/frameworks/native/libs/binder/tests/parcel_fuzzer/ |
H A D | hwbinder.cpp | 33 #define PARCEL_READ_OPT_STATUS(T, FUN) \ argument 34 PARCEL_READ_NO_STATUS(T, FUN), PARCEL_READ_WITH_STATUS(T, FUN) 36 #define PARCEL_READ_NO_STATUS(T, FUN) \ argument 38 FUZZ_LOG() << "about to read " #T " using " #FUN " with no status";\ 39 T t = p.FUN();\ 43 #define PARCEL_READ_WITH_STATUS(T, FUN) \ argument 45 FUZZ_LOG() << "about to read " #T " using " #FUN " with status";\ 47 status_t status = p.FUN(&t);\
|
H A D | binder.cpp | 69 #define PARCEL_READ_WITH_STATUS(T, FUN) \ argument 71 FUZZ_LOG() << "about to read " #T " using " #FUN " with status";\ 73 status_t status = p.FUN(&t);\ 77 #define PARCEL_READ_NO_STATUS(T, FUN) \ argument 79 FUZZ_LOG() << "about to read " #T " using " #FUN " with no status";\ 80 T t = p.FUN();\ 85 #define PARCEL_READ_OPT_STATUS(T, FUN) \ argument 86 PARCEL_READ_WITH_STATUS(T, FUN), \ 87 PARCEL_READ_NO_STATUS(T, FUN)
|
H A D | binder_ndk.cpp | 36 #define PARCEL_READ(T, FUN) \ argument 38 FUZZ_LOG() << "about to read " #T " using " #FUN " with status"; \ 40 binder_status_t status = FUN(p.aParcel(), &t); \
|
/aosp12/art/openjdkjvmti/ |
H A D | OpenjdkJvmTi.cc | 1075 #define FOR_ALL_CAPABILITIES(FUN) \ argument 1076 FUN(can_tag_objects) \ 1077 FUN(can_generate_field_modification_events) \ 1078 FUN(can_generate_field_access_events) \ 1079 FUN(can_get_bytecodes) \ 1080 FUN(can_get_synthetic_attribute) \ 1081 FUN(can_get_owned_monitor_info) \ 1082 FUN(can_get_current_contended_monitor) \ 1083 FUN(can_get_monitor_info) \ 1084 FUN(can_pop_frame) \ [all …]
|