| 116 | void random_harvest_direct_(const void *, u_int, enum random_entropy_source); |
| 117 | |
| 118 | static __inline void |
| 119 | random_harvest_queue(const void *entropy, u_int size, enum random_entropy_source origin) |
| 120 | { |
| 121 | |
| 122 | if (hc_source_mask & (1 << origin)) |
| 123 | random_harvest_queue_(entropy, size, origin); |
| 124 | } |
| 125 | |
| 126 | static __inline void |
| 127 | random_harvest_fast(const void *entropy, u_int size, enum random_entropy_source origin) |
no outgoing calls
no test coverage detected