OLD | NEW |
1 # This file contains known patterns of crash signatures. One pattern per line. | 1 # This file contains known patterns of crash signatures. One pattern per line. |
2 # | 2 # |
3 # A crash signature is the concatenation of the top N functions, delimited by | 3 # A crash signature is the concatenation of the top N functions, delimited by |
4 # '___', in chrome.dll on the crash stack. All characters are lower case. | 4 # '___', in chrome.dll on the crash stack. All characters are lower case. |
5 # | 5 # |
6 # We use crash signature patterns as our list of known crashes. A crash | 6 # We use crash signature patterns as our list of known crashes. A crash |
7 # signature pattern is a string that can be used to identify a known crash. We | 7 # signature pattern is a string that can be used to identify a known crash. We |
8 # use the notion of patterns because crashes with the same root cause can often | 8 # use the notion of patterns because crashes with the same root cause can often |
9 # differ somewhat in their crash stacks. A pattern is intended to be a | 9 # differ somewhat in their crash stacks. A pattern is intended to be a |
10 # generalized, yet still identifying, form of a particular crash. Usually a | 10 # generalized, yet still identifying, form of a particular crash. Usually a |
(...skipping 30 matching lines...) Expand all Loading... |
41 REGEX : `anonymous namespace'::invalidparameter$ | 41 REGEX : `anonymous namespace'::invalidparameter$ |
42 | 42 |
43 # 15620 | 43 # 15620 |
44 PREFIX : browser::processpendingtabs___browser::clearunloadstate | 44 PREFIX : browser::processpendingtabs___browser::clearunloadstate |
45 | 45 |
46 # 47207 | 46 # 47207 |
47 PREFIX : messageloop::runtask___messageloop::deferorrunpendingtask___messageloop
::dodelayedwork___base::messagepumpforio::dorunloop___base::messagepumpwin::run_
__messageloop::runinternal___messageloop::run___base::thread::run___base::thread
::threadmain___`anonymous namespace'::threadfunc | 47 PREFIX : messageloop::runtask___messageloop::deferorrunpendingtask___messageloop
::dodelayedwork___base::messagepumpforio::dorunloop___base::messagepumpwin::run_
__messageloop::runinternal___messageloop::run___base::thread::run___base::thread
::threadmain___`anonymous namespace'::threadfunc |
48 | 48 |
49 # 48712 | 49 # 48712 |
50 PREFIX : npapi::plugininstance::npp_newstream | 50 PREFIX : npapi::plugininstance::npp_newstream |
51 | |
52 # 49142 | |
53 PREFIX : std::basic_string<char,std::char_traits<char>,std::allocator<char> >::a
ssign___net::cookiemonster::internaldeletecookie___net::cookiemonster::deleteall
___net::cookiemonster::~cookiemonster___net::cookiemonster::`scalar deleting des
tructor'___tabspecificcontentsettings::localsharedobjectscontainer::~localshared
objectscontainer | |
OLD | NEW |