| asan_str_test.cc | 189   size_t to_size = Ident(30);  local in function:TEST 190   size_t from_size = Ident(6);  // less than to_size
 191   char *to = Ident((char*)malloc(to_size));
 196   strcpy(to + to_size - from_size, from);
 203   EXPECT_DEATH(Ident(strcpy(to + to_size, from)), RightOOBWriteMessage(0));
 212   size_t to_size = Ident(20);  local in function:TEST
 213   size_t from_size = Ident(6);  // less than to_size
 214   char *to = Ident((char*)malloc(to_size));
 223   strncpy(to, from, to_size);
 224   strncpy(to, from + from_size - 1, to_size);
 417  size_t to_size = Ident(100);  local in function:TEST
 452  size_t to_size = Ident(100);  local in function:TEST
 [all...]
 |