HomeSort by relevance Sort by last modified time
    Searched refs:heap_string (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/ppapi/proxy/
flash_font_file_resource.cc 76 linked_ptr<std::string> heap_string(new std::string(contents));
77 font_tables_[table] = heap_string;
78 return heap_string.get();
  /external/compiler-rt/lib/asan/tests/
asan_str_test.cc 51 char *heap_string = Ident((char*)malloc(length + 1)); local
55 heap_string[i] = 'a';
58 heap_string[length] = 0;
60 StrLenOOBTestTemplate(heap_string, length, false);
65 free(heap_string);
73 wchar_t *heap_string = Ident((wchar_t*)malloc(hello_size)); local
74 memcpy(heap_string, L"Hello, World!", hello_size);
75 EXPECT_EQ(hello_len, Ident(wcslen(heap_string)));
76 EXPECT_DEATH(Ident(wcslen(heap_string + 14)), RightOOBReadMessage(0));
77 free(heap_string);
    [all...]

Completed in 368 milliseconds