Home | History | Annotate | Download | only in Sema

Lines Matching refs:pv

90 int evil_nonnull_func(int* pointer, void * pv)
98 pointer = pv;
104 if (pv == NULL) {} // expected-warning {{comparison of nonnull parameter 'pv' equal to a null pointer is 'false' on first encounter}}
108 int another_evil_nonnull_func(int* pointer, char ch, void * pv) __attribute__((nonnull(1, 3)));
109 int another_evil_nonnull_func(int* pointer, char ch, void * pv) {
122 if (pv == NULL) {} // expected-warning {{comparison of nonnull parameter 'pv' equal to a null pointer is 'false' on first encounter}}
129 extern void *pv;
133 while (pv) {
140 pointer = returns_null(&pv);