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 79 matching lines...) Loading... |
90 # 20200 | 90 # 20200 |
91 SUBSTRING : wtf::fastrealloc___webcore::htmltokenizer::enlargescriptbuffer___web
core::htmltokenizer::parsecomment___webcore::htmltokenizer::parsetag | 91 SUBSTRING : wtf::fastrealloc___webcore::htmltokenizer::enlargescriptbuffer___web
core::htmltokenizer::parsecomment___webcore::htmltokenizer::parsetag |
92 | 92 |
93 # 20291 | 93 # 20291 |
94 PREFIX : webplugindelegateimpl::flashwindowlesswndproc___webplugindelegateimpl::
nativewndproc___base::messagepumpforui::dorunloop___base::messagepumpwin::run | 94 PREFIX : webplugindelegateimpl::flashwindowlesswndproc___webplugindelegateimpl::
nativewndproc___base::messagepumpforui::dorunloop___base::messagepumpwin::run |
95 | 95 |
96 # 20494 | 96 # 20494 |
97 # likely to be related with flash. The top few frames are all in NPSWF. | 97 # likely to be related with flash. The top few frames are all in NPSWF. |
98 REGEX : npapi::plugininstance::npp_newstream___[^_]*___ipc::syncchannel::sendwit
htimeout | 98 REGEX : npapi::plugininstance::npp_newstream___[^_]*___ipc::syncchannel::sendwit
htimeout |
99 | 99 |
100 # 20793 | |
101 PREFIX : webpluginproxy::setwindowlessbuffer___child_process_logging::setactiveu
rl | |
102 | |
103 # 20915 | 100 # 20915 |
104 REGEX : ^base::messagepumpforio::schedulework___ucase_props_trieindex___canonica
lize_map$ | 101 REGEX : ^base::messagepumpforio::schedulework___ucase_props_trieindex___canonica
lize_map$ |
105 PREFIX : base::messagepumpforio::schedulework___propsvectors___propsvectorstrie_
index | 102 PREFIX : base::messagepumpforio::schedulework___propsvectors___propsvectorstrie_
index |
106 PREFIX : npn_invalidaterect___webplugindelegateimpl | 103 PREFIX : npn_invalidaterect___webplugindelegateimpl |
107 PREFIX : runnablemethod<ipc::channelproxy::context,void (__thiscall ipc::channel
proxy::context::*)(ipc::message const &),tuple1<ipc::message> >::run___base::mes
sagepumpforui::dorunloop | 104 PREFIX : runnablemethod<ipc::channelproxy::context,void (__thiscall ipc::channel
proxy::context::*)(ipc::message const &),tuple1<ipc::message> >::run___base::mes
sagepumpforui::dorunloop |
108 | 105 |
109 # 21054 | 106 # 21054 |
110 REGEX : ^deletetask.*::run___messageloop::runtask___messageloop::dowork | 107 REGEX : ^deletetask.*::run___messageloop::runtask___messageloop::dowork |
111 PREFIX : messageloop::dowork | 108 PREFIX : messageloop::dowork |
112 | 109 |
(...skipping 22 matching lines...) Loading... |
135 | 132 |
136 # 23281 | 133 # 23281 |
137 REGEX : tabcontents::washidden___.*___tabcontents::~tabcontents | 134 REGEX : tabcontents::washidden___.*___tabcontents::~tabcontents |
138 | 135 |
139 # bug 23780 | 136 # bug 23780 |
140 PREFIX : v8::internal::mayaccessprecheck | 137 PREFIX : v8::internal::mayaccessprecheck |
141 | 138 |
142 # 26506 | 139 # 26506 |
143 PREFIX : webcore::eventtarget::fireeventlisteners___webcore::node::handlelocalev
ents___webcore::node::dispatchgenericevent___webcore::node::dispatchevent | 140 PREFIX : webcore::eventtarget::fireeventlisteners___webcore::node::handlelocalev
ents___webcore::node::dispatchgenericevent___webcore::node::dispatchevent |
144 | 141 |
OLD | NEW |