Lines Matching refs:orig
306 char *orig = strdup("0123456789"); in TEST_F() local
307 ASSERT_FORTIFY(strcpy(buf, orig)); in TEST_F()
308 free(orig); in TEST_F()
318 char *orig = strdup(""); in TEST_F() local
319 ASSERT_FORTIFY(strcpy(buf, orig)); in TEST_F()
320 free(orig); in TEST_F()
330 char *orig = strdup("1"); in TEST_F() local
331 ASSERT_FORTIFY(strcpy(buf, orig)); in TEST_F()
332 free(orig); in TEST_F()
342 char *orig = strdup("12"); in TEST_F() local
343 ASSERT_FORTIFY(strcpy(buf, orig)); in TEST_F()
344 free(orig); in TEST_F()