| OLD | NEW |
| 1 # There are three kinds of suppressions in this file. | 1 # There are three kinds of suppressions in this file. |
| 2 # 1. third party stuff we have no control over | 2 # 1. third party stuff we have no control over |
| 3 # | 3 # |
| 4 # 2. intentional unit test errors, or stuff that is somehow a false positive | 4 # 2. intentional unit test errors, or stuff that is somehow a false positive |
| 5 # in our own code, or stuff that is so trivial it's not worth fixing | 5 # in our own code, or stuff that is so trivial it's not worth fixing |
| 6 # | 6 # |
| 7 # 3. Suppressions for real chromium bugs that are not yet fixed. | 7 # 3. Suppressions for real chromium bugs that are not yet fixed. |
| 8 # These should all be in chromium's bug tracking system (but a few aren't yet). | 8 # These should all be in chromium's bug tracking system (but a few aren't yet). |
| 9 # Periodically we should sweep this file and the bug tracker clean by | 9 # Periodically we should sweep this file and the bug tracker clean by |
| 10 # running overnight and removing outdated bugs/suppressions. | 10 # running overnight and removing outdated bugs/suppressions. |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 fun:event_del | 232 fun:event_del |
| 233 } | 233 } |
| 234 { | 234 { |
| 235 FIXME epoll uninitialized data 3 | 235 FIXME epoll uninitialized data 3 |
| 236 Memcheck:Param | 236 Memcheck:Param |
| 237 epoll_wait(epfd) | 237 epoll_wait(epfd) |
| 238 fun:syscall | 238 fun:syscall |
| 239 fun:event_base_loop | 239 fun:event_base_loop |
| 240 } | 240 } |
| 241 { | 241 { |
| 242 FIXME IPCing uninitialized data | |
| 243 Memcheck:Param | |
| 244 socketcall.sendmsg(msg.msg_iov[i]) | |
| 245 fun:sendmsg | |
| 246 fun:_ZN3IPC7Channel11ChannelImpl4SendEPNS_7MessageE | |
| 247 } | |
| 248 { | |
| 249 # "The section of the SQLite library identified works exactly as it should." | 242 # "The section of the SQLite library identified works exactly as it should." |
| 250 # http://www.sqlite.org/cvstrac/tktview?tn=536,39 | 243 # http://www.sqlite.org/cvstrac/tktview?tn=536,39 |
| 251 # http://www.sqlite.org/cvstrac/tktview?tn=694,39 | 244 # http://www.sqlite.org/cvstrac/tktview?tn=694,39 |
| 252 # http://www.sqlite.org/cvstrac/tktview?tn=964,39 | 245 # http://www.sqlite.org/cvstrac/tktview?tn=964,39 |
| 253 # This looks like a case where an entire page was allocated, the header and | 246 # This looks like a case where an entire page was allocated, the header and |
| 254 # perhaps some data was written, but the entire buffer was not written to. | 247 # perhaps some data was written, but the entire buffer was not written to. |
| 255 # The SQLite authors aren't very interested in adding code to clear buffers | 248 # The SQLite authors aren't very interested in adding code to clear buffers |
| 256 # for no reason other than pleasing valgrind, but a patch might be accepted | 249 # for no reason other than pleasing valgrind, but a patch might be accepted |
| 257 # under a macro like SQLITE_SECURE_DELETE which could be construed to apply | 250 # under a macro like SQLITE_SECURE_DELETE which could be construed to apply |
| 258 # to cases like this. (Note that we compile with SQLITE_SECURE_DELETE.) | 251 # to cases like this. (Note that we compile with SQLITE_SECURE_DELETE.) |
| 259 bug_20653a | 252 bug_20653a |
| 260 Memcheck:Param | 253 Memcheck:Param |
| 261 write(buf) | 254 write(buf) |
| 262 ... | 255 ... |
| 263 fun:sqlite3OsWrite | 256 fun:sqlite3OsWrite |
| 264 fun:pager_write_pagelist | 257 fun:pager_write_pagelist |
| 265 } | 258 } |
| 266 { | 259 { |
| 267 bug_20653b | 260 bug_20653b |
| 268 Memcheck:Param | 261 Memcheck:Param |
| 269 write(buf) | 262 write(buf) |
| 270 ... | 263 ... |
| 271 fun:*Write | 264 fun:*Write |
| 272 fun:sqlite3OsWrite | 265 fun:sqlite3OsWrite |
| 273 ... | 266 ... |
| 274 fun:pager_write | 267 fun:pager_write |
| 275 } | 268 } |
| 276 | |
| 277 { | 269 { |
| 278 # array of weak references freed but not processed? | 270 # array of weak references freed but not processed? |
| 279 bug_16576 | 271 bug_16576 |
| 280 Memcheck:Leak | 272 Memcheck:Leak |
| 281 ... | 273 ... |
| 282 fun:g_object_weak_ref | 274 fun:g_object_weak_ref |
| 283 fun:g_object_add_weak_pointer | 275 fun:g_object_add_weak_pointer |
| 284 } | 276 } |
| 285 { | 277 { |
| 286 bug_16161 | 278 bug_16161 |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 459 ... | 451 ... |
| 460 obj:/*lib*/libz.so.1.2.* | 452 obj:/*lib*/libz.so.1.2.* |
| 461 fun:*flate | 453 fun:*flate |
| 462 } | 454 } |
| 463 { | 455 { |
| 464 zlib-1.2.x trickyness (1b): See http://www.zlib.net/zlib_faq.html#faq36 | 456 zlib-1.2.x trickyness (1b): See http://www.zlib.net/zlib_faq.html#faq36 |
| 465 Memcheck:Cond | 457 Memcheck:Cond |
| 466 obj:/*lib*/libz.so.1.2.* | 458 obj:/*lib*/libz.so.1.2.* |
| 467 fun:*flate | 459 fun:*flate |
| 468 } | 460 } |
| 469 | |
| 470 { | 461 { |
| 471 zlib-1.2.x trickyness (2a): See http://www.zlib.net/zlib_faq.html#faq36 | 462 zlib-1.2.x trickyness (2a): See http://www.zlib.net/zlib_faq.html#faq36 |
| 472 Memcheck:Value8 | 463 Memcheck:Value8 |
| 473 obj:/*lib*/libz.so.1.2.* | 464 obj:/*lib*/libz.so.1.2.* |
| 474 ... | 465 ... |
| 475 obj:/*lib*/libz.so.1.2.* | 466 obj:/*lib*/libz.so.1.2.* |
| 476 fun:*flate | 467 fun:*flate |
| 477 } | 468 } |
| 478 { | 469 { |
| 479 zlib-1.2.x trickyness (2b): See http://www.zlib.net/zlib_faq.html#faq36 | 470 zlib-1.2.x trickyness (2b): See http://www.zlib.net/zlib_faq.html#faq36 |
| 480 Memcheck:Value8 | 471 Memcheck:Value8 |
| 481 obj:/*lib*/libz.so.1.2.* | 472 obj:/*lib*/libz.so.1.2.* |
| 482 fun:*flate | 473 fun:*flate |
| 483 } | 474 } |
| 484 { | 475 { |
| 485 zlib-1.2.x trickyness (3a): See http://www.zlib.net/zlib_faq.html#faq36 | 476 zlib-1.2.x trickyness (3a): See http://www.zlib.net/zlib_faq.html#faq36 |
| 486 Memcheck:Value4 | 477 Memcheck:Value4 |
| 487 obj:/*lib*/libz.so.1.2.* | 478 obj:/*lib*/libz.so.1.2.* |
| 488 ... | 479 ... |
| 489 obj:/*lib*/libz.so.1.2.* | 480 obj:/*lib*/libz.so.1.2.* |
| 490 fun:*flate | 481 fun:*flate |
| 491 } | 482 } |
| 492 { | 483 { |
| 493 zlib-1.2.x trickyness (3b): See http://www.zlib.net/zlib_faq.html#faq36 | 484 zlib-1.2.x trickyness (3b): See http://www.zlib.net/zlib_faq.html#faq36 |
| 494 Memcheck:Value4 | 485 Memcheck:Value4 |
| 495 obj:/*lib*/libz.so.1.2.* | 486 obj:/*lib*/libz.so.1.2.* |
| 496 fun:*flate | 487 fun:*flate |
| 497 } | 488 } |
| 498 | |
| 499 { | 489 { |
| 500 # zlib is smarter than we are: | 490 # zlib is smarter than we are: |
| 501 # http://www.zlib.net/zlib_faq.html#faq36 | 491 # http://www.zlib.net/zlib_faq.html#faq36 |
| 502 zlib_conditional_jump_performance_a | 492 zlib_conditional_jump_performance_a |
| 503 Memcheck:Value4 | 493 Memcheck:Value4 |
| 504 ... | 494 ... |
| 505 fun:inflate | 495 fun:inflate |
| 506 fun:_ZN4spdy10SpdyFramer26DecompressFrameWithZStreamERKNS_9SpdyFrameEP10z_stre
am_s | 496 fun:_ZN4spdy10SpdyFramer26DecompressFrameWithZStreamERKNS_9SpdyFrameEP10z_stre
am_s |
| 507 fun:_ZN4spdy10SpdyFramer22DecompressControlFrameERKNS_16SpdyControlFrameE | 497 fun:_ZN4spdy10SpdyFramer22DecompressControlFrameERKNS_16SpdyControlFrameE |
| 508 fun:_ZN4spdy10SpdyFramer15DecompressFrameERKNS_9SpdyFrameE | 498 fun:_ZN4spdy10SpdyFramer15DecompressFrameERKNS_9SpdyFrameE |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 832 fun:_Z25createV8ObjectForNPObjectP8NPObjectS0_ | 822 fun:_Z25createV8ObjectForNPObjectP8NPObjectS0_ |
| 833 } | 823 } |
| 834 { | 824 { |
| 835 # webkit leak? See http://crbug.com/9503 | 825 # webkit leak? See http://crbug.com/9503 |
| 836 bug_9503 | 826 bug_9503 |
| 837 Memcheck:Leak | 827 Memcheck:Leak |
| 838 ... | 828 ... |
| 839 fun:_ZN19TestWebViewDelegate24UpdateSelectionClipboardEb | 829 fun:_ZN19TestWebViewDelegate24UpdateSelectionClipboardEb |
| 840 } | 830 } |
| 841 { | 831 { |
| 832 bug_10553 |
| 833 Memcheck:Leak |
| 834 fun:_Znw* |
| 835 fun:_ZN7history14HistoryBackend8InitImplEv |
| 836 fun:_ZN7history14HistoryBackend4InitEb |
| 837 fun:_Z16DispatchToMethodIN7history14HistoryBackendEMS1_FvbEbEvPT_T0_RK6Tuple1
IT1_E |
| 838 fun:_ZN14RunnableMethodIN7history14HistoryBackendEMS1_FvbE6Tuple1IbEE3RunEv |
| 839 fun:_ZN11MessageLoop7RunTaskEP4Task |
| 840 fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE |
| 841 fun:_ZN11MessageLoop6DoWorkEv |
| 842 fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE |
| 843 fun:_ZN11MessageLoop11RunInternalEv |
| 844 fun:_ZN11MessageLoop10RunHandlerEv |
| 845 } |
| 846 { |
| 842 # See http://crbug.com/11139 | 847 # See http://crbug.com/11139 |
| 843 bug_11139 | 848 bug_11139 |
| 844 Memcheck:Leak | 849 Memcheck:Leak |
| 845 fun:_Znw* | 850 fun:_Znw* |
| 846 fun:_ZN14ProcessWatcher23EnsureProcessTerminatedEi | 851 fun:_ZN14ProcessWatcher23EnsureProcessTerminatedEi |
| 847 } | 852 } |
| 848 { | 853 { |
| 849 bug_11838 | 854 bug_11838 |
| 850 Memcheck:Cond | 855 Memcheck:Cond |
| 851 fun:strlen | 856 fun:strlen |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 897 { | 902 { |
| 898 # ditto, but tweak to match the chromeos's stack. | 903 # ditto, but tweak to match the chromeos's stack. |
| 899 bug_16089d | 904 bug_16089d |
| 900 Memcheck:Leak | 905 Memcheck:Leak |
| 901 fun:* | 906 fun:* |
| 902 ... | 907 ... |
| 903 fun:_ZN4base22LinuxDynamicThreadPool8PostTaskEP4Task | 908 fun:_ZN4base22LinuxDynamicThreadPool8PostTaskEP4Task |
| 904 ... | 909 ... |
| 905 fun:_ZN3net16HostResolverImpl3Job5StartEv | 910 fun:_ZN3net16HostResolverImpl3Job5StartEv |
| 906 } | 911 } |
| 907 | |
| 908 { | 912 { |
| 909 # ditto, but for IPv6 support (?) | 913 # ditto, but for IPv6 support (?) |
| 910 bug_16089e | 914 bug_16089e |
| 911 Memcheck:Leak | 915 Memcheck:Leak |
| 912 fun:* | 916 fun:* |
| 913 ... | 917 ... |
| 914 fun:_ZN4base22LinuxDynamicThreadPool8PostTaskEP4Task | 918 fun:_ZN4base22LinuxDynamicThreadPool8PostTaskEP4Task |
| 915 ... | 919 ... |
| 916 fun:_ZN3net16HostResolverImpl16ProbeIPv6SupportEv | 920 fun:_ZN3net16HostResolverImpl16ProbeIPv6SupportEv |
| 917 } | 921 } |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1132 { | 1136 { |
| 1133 bug_19371 | 1137 bug_19371 |
| 1134 Memcheck:Leak | 1138 Memcheck:Leak |
| 1135 fun:_Znw* | 1139 fun:_Znw* |
| 1136 ... | 1140 ... |
| 1137 fun:_ZN4base13WaitableEvent7EnqueueEPNS0_6WaiterE | 1141 fun:_ZN4base13WaitableEvent7EnqueueEPNS0_6WaiterE |
| 1138 fun:_ZN4base13WaitableEvent9TimedWaitERKNS_9TimeDeltaE | 1142 fun:_ZN4base13WaitableEvent9TimedWaitERKNS_9TimeDeltaE |
| 1139 fun:_ZN4base13WaitableEvent4WaitEv | 1143 fun:_ZN4base13WaitableEvent4WaitEv |
| 1140 fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE | 1144 fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE |
| 1141 } | 1145 } |
| 1142 | |
| 1143 { | 1146 { |
| 1144 # slight variant of the above | 1147 # slight variant of the above |
| 1145 bug_19371a | 1148 bug_19371a |
| 1146 Memcheck:Leak | 1149 Memcheck:Leak |
| 1147 fun:_Znw* | 1150 fun:_Znw* |
| 1148 ... | 1151 ... |
| 1149 fun:_ZN4base13WaitableEvent7EnqueueEPNS0_6WaiterE | 1152 fun:_ZN4base13WaitableEvent7EnqueueEPNS0_6WaiterE |
| 1150 fun:_ZN4base13WaitableEvent9TimedWaitERKNS_9TimeDeltaE | 1153 fun:_ZN4base13WaitableEvent9TimedWaitERKNS_9TimeDeltaE |
| 1151 fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE | 1154 fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE |
| 1152 } | 1155 } |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1193 fun:_ZN19SafeBrowsingService5StartEv | 1196 fun:_ZN19SafeBrowsingService5StartEv |
| 1194 fun:_ZN19SafeBrowsingService10InitializeEP11MessageLoop | 1197 fun:_ZN19SafeBrowsingService10InitializeEP11MessageLoop |
| 1195 fun:_ZN22ResourceDispatcherHost10InitializeEv | 1198 fun:_ZN22ResourceDispatcherHost10InitializeEv |
| 1196 fun:_ZN18BrowserProcessImpl28CreateResourceDispatcherHostEv | 1199 fun:_ZN18BrowserProcessImpl28CreateResourceDispatcherHostEv |
| 1197 fun:_ZN18BrowserProcessImpl24resource_dispatcher_hostEv | 1200 fun:_ZN18BrowserProcessImpl24resource_dispatcher_hostEv |
| 1198 fun:_ZN17ExtensionsService4InitEv | 1201 fun:_ZN17ExtensionsService4InitEv |
| 1199 fun:_ZN11ProfileImpl14InitExtensionsEv | 1202 fun:_ZN11ProfileImpl14InitExtensionsEv |
| 1200 fun:_Z11BrowserMainRK18MainFunctionParams | 1203 fun:_Z11BrowserMainRK18MainFunctionParams |
| 1201 } | 1204 } |
| 1202 { | 1205 { |
| 1206 bug_19775_a |
| 1207 Memcheck:Leak |
| 1208 ... |
| 1209 fun:malloc |
| 1210 fun:sqlite3MemMalloc |
| 1211 fun:mallocWithAlarm |
| 1212 fun:sqlite3Malloc |
| 1213 ... |
| 1214 fun:sqlite3CreateIndex |
| 1215 fun:yy_reduce |
| 1216 fun:sqlite3Parser |
| 1217 fun:sqlite3RunParser |
| 1218 fun:sqlite3Prepare |
| 1219 fun:sqlite3LockAndPrepare |
| 1220 fun:sqlite3_prepare |
| 1221 fun:sqlite3_exec |
| 1222 fun:sqlite3InitCallback |
| 1223 fun:sqlite3_exec |
| 1224 fun:sqlite3VdbeExec |
| 1225 fun:sqlite3Step |
| 1226 fun:sqlite3_step |
| 1227 fun:sqlite3_exec |
| 1228 fun:_ZN3sql10Connection7ExecuteEPKc |
| 1229 fun:_ZN7history11URLDatabase18CreateMainURLIndexEv |
| 1230 } |
| 1231 { |
| 1232 bug_19775_b |
| 1233 Memcheck:Leak |
| 1234 ... |
| 1235 fun:malloc |
| 1236 fun:sqlite3MemMalloc |
| 1237 fun:mallocWithAlarm |
| 1238 fun:sqlite3Malloc |
| 1239 fun:sqlite3_malloc |
| 1240 fun:pcache1Create |
| 1241 fun:sqlite3PcacheFetch |
| 1242 fun:sqlite3PagerAcquire2 |
| 1243 fun:sqlite3PagerAcquire |
| 1244 fun:btreeGetPage |
| 1245 fun:lockBtree |
| 1246 fun:sqlite3BtreeBeginTrans |
| 1247 fun:sqlite3InitOne |
| 1248 fun:sqlite3Init |
| 1249 fun:sqlite3ReadSchema |
| 1250 fun:sqlite3Pragma |
| 1251 fun:yy_reduce |
| 1252 fun:sqlite3Parser |
| 1253 fun:sqlite3RunParser |
| 1254 fun:sqlite3Prepare |
| 1255 fun:sqlite3LockAndPrepare |
| 1256 } |
| 1257 { |
| 1258 bug_19775_c |
| 1259 Memcheck:Leak |
| 1260 ... |
| 1261 fun:openDatabase |
| 1262 fun:sqlite3_open |
| 1263 fun:_ZN3sql10Connection12OpenInternalERKSs |
| 1264 fun:_ZN3sql10Connection12OpenInMemoryEv |
| 1265 fun:_ZN7history16InMemoryDatabase6InitDBEv |
| 1266 fun:_ZN7history16InMemoryDatabase12InitFromDiskERK8FilePath |
| 1267 } |
| 1268 { |
| 1269 bug_19775_e |
| 1270 Memcheck:Leak |
| 1271 ... |
| 1272 fun:malloc |
| 1273 fun:sqlite3MemMalloc |
| 1274 fun:mallocWithAlarm |
| 1275 fun:sqlite3Malloc |
| 1276 fun:sqlite3DbMallocRaw |
| 1277 fun:sqlite3DbMallocZero |
| 1278 fun:sqlite3StartTable |
| 1279 fun:yy_reduce |
| 1280 fun:sqlite3Parser |
| 1281 fun:sqlite3RunParser |
| 1282 fun:sqlite3Prepare |
| 1283 fun:sqlite3LockAndPrepare |
| 1284 fun:sqlite3_prepare |
| 1285 fun:sqlite3_exec |
| 1286 fun:sqlite3InitCallback |
| 1287 fun:sqlite3_exec |
| 1288 fun:sqlite3InitOne |
| 1289 fun:sqlite3Init |
| 1290 fun:sqlite3ReadSchema |
| 1291 fun:sqlite3CreateIndex |
| 1292 fun:yy_reduce |
| 1293 } |
| 1294 { |
| 1203 bug_20113 | 1295 bug_20113 |
| 1204 Memcheck:Leak | 1296 Memcheck:Leak |
| 1205 ... | 1297 ... |
| 1206 fun:malloc | 1298 fun:malloc |
| 1207 fun:_ZN3WTF10fastMallocE* | 1299 fun:_ZN3WTF10fastMallocE* |
| 1208 ... | 1300 ... |
| 1209 fun:_ZN7WebCore16StorageNamespace23sessionStorageNamespaceEv | 1301 fun:_ZN7WebCore16StorageNamespace23sessionStorageNamespaceEv |
| 1210 fun:_ZN7WebCore4Page14sessionStorageEb | 1302 fun:_ZN7WebCore4Page14sessionStorageEb |
| 1211 fun:_ZNK7WebCore9DOMWindow14sessionStorageEv | 1303 fun:_ZNK7WebCore9DOMWindow14sessionStorageEv |
| 1212 fun:_ZN7WebCore17DOMWindowInternal*24sessionStorageAttrGetterEN2v85LocalINS1_
6StringEEERKNS1_12AccessorInfoE | 1304 fun:_ZN7WebCore17DOMWindowInternal*24sessionStorageAttrGetterEN2v85LocalINS1_
6StringEEERKNS1_12AccessorInfoE |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1278 fun:_ZN15tracked_objects10ThreadData12FindLifetimeERKNS_8LocationE | 1370 fun:_ZN15tracked_objects10ThreadData12FindLifetimeERKNS_8LocationE |
| 1279 fun:_ZN15tracked_objects7Tracked13SetBirthPlaceERKNS_8LocationE | 1371 fun:_ZN15tracked_objects7Tracked13SetBirthPlaceERKNS_8LocationE |
| 1280 fun:_ZN11MessageLoop15PostTask_HelperERKN15tracked_objects8LocationEP4Taskxb | 1372 fun:_ZN11MessageLoop15PostTask_HelperERKN15tracked_objects8LocationEP4Taskxb |
| 1281 fun:_ZN11MessageLoop15PostDelayedTaskERKN15tracked_objects8LocationEP4Taskx | 1373 fun:_ZN11MessageLoop15PostDelayedTaskERKN15tracked_objects8LocationEP4Taskx |
| 1282 fun:_ZN4base16BaseTimer_Helper19InitiateDelayedTaskEPNS0_9TimerTaskE | 1374 fun:_ZN4base16BaseTimer_Helper19InitiateDelayedTaskEPNS0_9TimerTaskE |
| 1283 fun:_ZN4base9BaseTimerI27SafeBrowsingProtocolManagerLb0EE5StartENS_9TimeDelta
EPS1_MS1_FvvE | 1375 fun:_ZN4base9BaseTimerI27SafeBrowsingProtocolManagerLb0EE5StartENS_9TimeDelta
EPS1_MS1_FvvE |
| 1284 fun:_ZN27SafeBrowsingProtocolManager18ScheduleNextUpdateEb | 1376 fun:_ZN27SafeBrowsingProtocolManager18ScheduleNextUpdateEb |
| 1285 fun:_ZN27SafeBrowsingProtocolManager10InitializeEv | 1377 fun:_ZN27SafeBrowsingProtocolManager10InitializeEv |
| 1286 } | 1378 } |
| 1287 { | 1379 { |
| 1380 # IPCing uninitialized data |
| 1381 bug_20997 |
| 1382 Memcheck:Param |
| 1383 socketcall.sendmsg(msg.msg_iov[i]) |
| 1384 fun:sendmsg* |
| 1385 fun:_ZN3IPC7Channel11ChannelImpl4SendEPNS_7MessageE |
| 1386 } |
| 1387 { |
| 1288 bug_21010a | 1388 bug_21010a |
| 1289 Memcheck:Value4 | 1389 Memcheck:Value4 |
| 1290 fun:_ZN2v88internal10PagedSpace10FindObjectEPh | 1390 fun:_ZN2v88internal10PagedSpace10FindObjectEPh |
| 1291 } | 1391 } |
| 1292 { | 1392 { |
| 1293 bug_21010b | 1393 bug_21010b |
| 1294 Memcheck:Value4 | 1394 Memcheck:Value4 |
| 1295 fun:_ZN2v88internal18HeapObjectIterator17HasNextInNextPageEv | 1395 fun:_ZN2v88internal18HeapObjectIterator17HasNextInNextPageEv |
| 1296 } | 1396 } |
| 1297 { | 1397 { |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1396 bug_23313 | 1496 bug_23313 |
| 1397 Memcheck:Leak | 1497 Memcheck:Leak |
| 1398 fun:_Znw* | 1498 fun:_Znw* |
| 1399 ... | 1499 ... |
| 1400 fun:_ZNSt6vectorIN4skia19ConvolutionFilter1D14FilterInstanceESaIS2_EE9push_ba
ckERKS2_ | 1500 fun:_ZNSt6vectorIN4skia19ConvolutionFilter1D14FilterInstanceESaIS2_EE9push_ba
ckERKS2_ |
| 1401 fun:_ZN4skia19ConvolutionFilter1D9AddFilterEiPKsi | 1501 fun:_ZN4skia19ConvolutionFilter1D9AddFilterEiPKsi |
| 1402 ... | 1502 ... |
| 1403 fun:_ZN4skia15ImageOperations6ResizeERK8SkBitmapNS0_12ResizeMethodEiiRK7SkIRe
ct | 1503 fun:_ZN4skia15ImageOperations6ResizeERK8SkBitmapNS0_12ResizeMethodEiiRK7SkIRe
ct |
| 1404 } | 1504 } |
| 1405 { | 1505 { |
| 1506 bug_23416 |
| 1507 Memcheck:Leak |
| 1508 fun:_Znw* |
| 1509 fun:_ZN11webkit_glue16WebURLLoaderImplC1Ev |
| 1510 fun:_ZN11webkit_glue16WebKitClientImpl15createURLLoaderEv |
| 1511 fun:_ZN11webkit_glue15ResourceFetcher5StartEPN6WebKit8WebFrameE |
| 1512 fun:_ZN11webkit_glue15ResourceFetcherC2ERK4GURLPN6WebKit8WebFrameEP14Callback
RunnerI6Tuple2IRKNS4_14WebURLResponseERKSsEE |
| 1513 fun:_ZN11webkit_glue26ResourceFetcherWithTimeoutC1ERK4GURLPN6WebKit8WebFrameE
iP14CallbackRunnerI6Tuple2IRKNS4_14WebURLResponseERKSsEE |
| 1514 fun:_ZN11webkit_glue27AltErrorPageResourceFetcherC1ERK4GURLPN6WebKit8WebFrame
ERKNS4_11WebURLErrorEP14CallbackRunnerI6Tuple3IS6_S9_RKSsEE |
| 1515 } |
| 1516 { |
| 1406 bug_23918 | 1517 bug_23918 |
| 1407 Memcheck:Leak | 1518 Memcheck:Leak |
| 1408 fun:_Znw* | 1519 fun:_Znw* |
| 1409 fun:_ZNSs4_Rep9_S_createEjjRKSaIcE | 1520 fun:_ZNSs4_Rep9_S_createEjjRKSaIcE |
| 1410 fun:_ZNSs4_Rep8_M_cloneERKSaIcEj | 1521 fun:_ZNSs4_Rep8_M_cloneERKSaIcEj |
| 1411 fun:_ZNSs7reserveEj | 1522 fun:_ZNSs7reserveEj |
| 1412 fun:_ZNSs6appendERKSs | 1523 fun:_ZNSs6appendERKSs |
| 1413 fun:_ZN12StatsCounterC1ERKSs | 1524 fun:_ZN12StatsCounterC1ERKSs |
| 1414 fun:_ZN12WebFrameImplC1EPN6WebKit14WebFrameClientE | 1525 fun:_ZN12WebFrameImplC1EPN6WebKit14WebFrameClientE |
| 1415 fun:_ZN11WebViewImpl19initializeMainFrameEPN6WebKit14WebFrameClientE | 1526 fun:_ZN11WebViewImpl19initializeMainFrameEPN6WebKit14WebFrameClientE |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1625 fun:_ZN2v88internal7MakeASTEbNS0_6HandleINS0_6ScriptEEEPNS_9ExtensionEPNS0_14
ScriptDataImplE | 1736 fun:_ZN2v88internal7MakeASTEbNS0_6HandleINS0_6ScriptEEEPNS_9ExtensionEPNS0_14
ScriptDataImplE |
| 1626 fun:_ZN2v88internalL12MakeFunctionEbbNS0_8Compiler15ValidationStateENS0_6Hand
leINS0_6ScriptEEENS3_INS0_7ContextEEEPNS_9ExtensionEPNS0_14ScriptDataImplE | 1737 fun:_ZN2v88internalL12MakeFunctionEbbNS0_8Compiler15ValidationStateENS0_6Hand
leINS0_6ScriptEEENS3_INS0_7ContextEEEPNS_9ExtensionEPNS0_14ScriptDataImplE |
| 1627 fun:_ZN2v88internal8Compiler7CompileENS0_6HandleINS0_6StringEEENS2_INS0_6Obje
ctEEEiiPNS_9ExtensionEPNS0_14ScriptDataImplE | 1738 fun:_ZN2v88internal8Compiler7CompileENS0_6HandleINS0_6StringEEENS2_INS0_6Obje
ctEEEiiPNS_9ExtensionEPNS0_14ScriptDataImplE |
| 1628 fun:_ZN2v88internal5Debug21CompileDebuggerScriptEi | 1739 fun:_ZN2v88internal5Debug21CompileDebuggerScriptEi |
| 1629 fun:_ZN2v88internal5Debug4LoadEv | 1740 fun:_ZN2v88internal5Debug4LoadEv |
| 1630 fun:_ZN2v88internal13EnterDebuggerC2Ev | 1741 fun:_ZN2v88internal13EnterDebuggerC2Ev |
| 1631 fun:_ZN2v88internal13EnterDebuggerC1Ev | 1742 fun:_ZN2v88internal13EnterDebuggerC1Ev |
| 1632 fun:_ZN2v88internal8Debugger4CallENS0_6HandleINS0_10JSFunctionEEENS2_INS0_6Ob
jectEEEPb | 1743 fun:_ZN2v88internal8Debugger4CallENS0_6HandleINS0_10JSFunctionEEENS2_INS0_6Ob
jectEEEPb |
| 1633 } | 1744 } |
| 1634 { | 1745 { |
| 1635 bug_27991 | |
| 1636 Memcheck:Addr4 | |
| 1637 fun:_ZN11MessageLoop7RunTaskEP4Task | |
| 1638 fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE | |
| 1639 fun:_ZN11MessageLoop6DoWorkEv | |
| 1640 fun:_ZN4base24MessagePumpCFRunLoopBase7RunWorkEv | |
| 1641 fun:_ZN4base24MessagePumpCFRunLoopBase13RunWorkSourceEPv | |
| 1642 fun:CFRunLoopRunSpecific | |
| 1643 fun:CFRunLoopRunInMode | |
| 1644 fun:RunCurrentEventLoopInMode | |
| 1645 fun:ReceiveNextEventCommon | |
| 1646 fun:BlockUntilNextEventMatchingListInMode | |
| 1647 fun:_DPSNextEvent | |
| 1648 fun:-[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] | |
| 1649 fun:-[NSApplication run] | |
| 1650 fun:_ZN4base24MessagePumpNSApplication5DoRunEPNS_11MessagePump8DelegateE | |
| 1651 fun:_ZN4base24MessagePumpCFRunLoopBase3RunEPNS_11MessagePump8DelegateE | |
| 1652 fun:_ZN11MessageLoop11RunInternalEv | |
| 1653 fun:_ZN11MessageLoop10RunHandlerEv | |
| 1654 } | |
| 1655 { | |
| 1656 bug_27993 | 1746 bug_27993 |
| 1657 Memcheck:Leak | 1747 Memcheck:Leak |
| 1658 fun:_Znw* | 1748 fun:_Znw* |
| 1659 fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeIP24DOMStorageDispatcherHos
tEE8allocateEmPKv | 1749 fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeIP24DOMStorageDispatcherHos
tEE8allocateEmPKv |
| 1660 fun:_ZNSt8_Rb_treeIP24DOMStorageDispatcherHostS1_St9_IdentityIS1_ESt4lessIS1_
ESaIS1_EE11_M_get_nodeEv | 1750 fun:_ZNSt8_Rb_treeIP24DOMStorageDispatcherHostS1_St9_IdentityIS1_ESt4lessIS1_
ESaIS1_EE11_M_get_nodeEv |
| 1661 fun:_ZNSt8_Rb_treeIP24DOMStorageDispatcherHostS1_St9_IdentityIS1_ESt4lessIS1_
ESaIS1_EE14_M_create_nodeERKS1_ | 1751 fun:_ZNSt8_Rb_treeIP24DOMStorageDispatcherHostS1_St9_IdentityIS1_ESt4lessIS1_
ESaIS1_EE14_M_create_nodeERKS1_ |
| 1662 fun:_ZNSt8_Rb_treeIP24DOMStorageDispatcherHostS1_St9_IdentityIS1_ESt4lessIS1_
ESaIS1_EE9_M_insertEPSt18_Rb_tree_node_baseS9_RKS1_ | 1752 fun:_ZNSt8_Rb_treeIP24DOMStorageDispatcherHostS1_St9_IdentityIS1_ESt4lessIS1_
ESaIS1_EE9_M_insertEPSt18_Rb_tree_node_baseS9_RKS1_ |
| 1663 fun:_ZNSt8_Rb_treeIP24DOMStorageDispatcherHostS1_St9_IdentityIS1_ESt4lessIS1_
ESaIS1_EE13insert_uniqueERKS1_ | 1753 fun:_ZNSt8_Rb_treeIP24DOMStorageDispatcherHostS1_St9_IdentityIS1_ESt4lessIS1_
ESaIS1_EE13insert_uniqueERKS1_ |
| 1664 fun:_ZNSt3setIP24DOMStorageDispatcherHostSt4lessIS1_ESaIS1_EE6insertERKS1_ | 1754 fun:_ZNSt3setIP24DOMStorageDispatcherHostSt4lessIS1_ESaIS1_EE6insertERKS1_ |
| 1665 fun:_ZN17DOMStorageContext22RegisterDispatcherHostEP24DOMStorageDispatcherHos
t | 1755 fun:_ZN17DOMStorageContext22RegisterDispatcherHostEP24DOMStorageDispatcherHos
t |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1747 fun:_ZN2v88internalL21Builtin_HandleApiCallENS0_9ArgumentsE | 1837 fun:_ZN2v88internalL21Builtin_HandleApiCallENS0_9ArgumentsE |
| 1748 obj:* | 1838 obj:* |
| 1749 obj:* | 1839 obj:* |
| 1750 obj:* | 1840 obj:* |
| 1751 obj:* | 1841 obj:* |
| 1752 fun:_ZN2v88internalL6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectE
EEiPPPS4_Pb | 1842 fun:_ZN2v88internalL6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectE
EEiPPPS4_Pb |
| 1753 fun:_ZN2v88internal9Execution4CallENS0_6HandleINS0_10JSFunctionEEENS2_INS0_6O
bjectEEEiPPPS5_Pb | 1843 fun:_ZN2v88internal9Execution4CallENS0_6HandleINS0_10JSFunctionEEENS2_INS0_6O
bjectEEEiPPPS5_Pb |
| 1754 fun:_ZN2v86Script3RunEv | 1844 fun:_ZN2v86Script3RunEv |
| 1755 } | 1845 } |
| 1756 { | 1846 { |
| 1757 bug_28073 | |
| 1758 Memcheck:Addr4 | |
| 1759 fun:_ZN10CLVContextC2EPKvm | |
| 1760 fun:_Z26getAllCarbonLazyValues2000v | |
| 1761 fun:CLVVisitValuesForKey | |
| 1762 fun:aeInstallLazyEventHandlers | |
| 1763 fun:AEGetEventHandler | |
| 1764 fun:AEGetSpecialHandler | |
| 1765 fun:_Z35_findSysPreHIToolboxDispatchHandlermmPl | |
| 1766 fun:_Z20aeDispatchAppleEventPK6AEDescPS_mPh | |
| 1767 fun:_Z25dispatchEventAndSendReplyPK6AEDescPS_ | |
| 1768 fun:aeProcessAppleEvent | |
| 1769 fun:AEProcessAppleEvent | |
| 1770 fun:_DPSNextEvent | |
| 1771 fun:-[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] | |
| 1772 fun:-[NSApplication run] | |
| 1773 fun:_ZN4base24MessagePumpNSApplication5DoRunEPNS_11MessagePump8DelegateE | |
| 1774 fun:_ZN4base24MessagePumpCFRunLoopBase3RunEPNS_11MessagePump8DelegateE | |
| 1775 fun:_ZN11MessageLoop11RunInternalEv | |
| 1776 fun:_ZN11MessageLoop10RunHandlerEv | |
| 1777 } | |
| 1778 { | |
| 1779 bug_28071 | |
| 1780 Memcheck:Addr4 | |
| 1781 fun:_ZN10CLVContextC2EPKvm | |
| 1782 fun:_Z26getAllCarbonLazyValues2000v | |
| 1783 fun:CLVVisitValuesForKey | |
| 1784 fun:aeInstallLazyEventHandlers | |
| 1785 fun:AEGetEventHandler | |
| 1786 fun:AEGetSpecialHandler | |
| 1787 fun:_Z35_findSysPreHIToolboxDispatchHandlermmPl | |
| 1788 fun:_Z20aeDispatchAppleEventPK6AEDescPS_mPh | |
| 1789 fun:_Z25dispatchEventAndSendReplyPK6AEDescPS_ | |
| 1790 fun:aeProcessAppleEvent | |
| 1791 fun:AEProcessAppleEvent | |
| 1792 fun:_DPSNextEvent | |
| 1793 fun:-[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] | |
| 1794 fun:-[NSApplication run] | |
| 1795 fun:_ZN4base24MessagePumpNSApplication5DoRunEPNS_11MessagePump8DelegateE | |
| 1796 fun:_ZN4base24MessagePumpCFRunLoopBase3RunEPNS_11MessagePump8DelegateE | |
| 1797 fun:_ZN11MessageLoop11RunInternalEv | |
| 1798 fun:_ZN11MessageLoop10RunHandlerEv | |
| 1799 } | |
| 1800 { | |
| 1801 bug_28200 | 1847 bug_28200 |
| 1802 Memcheck:Leak | 1848 Memcheck:Leak |
| 1803 fun:malloc | 1849 fun:malloc |
| 1804 fun:malloc | 1850 fun:malloc |
| 1805 fun:_ZN3WTF10fastMallocEj | 1851 fun:_ZN3WTF10fastMallocEj |
| 1806 fun:_ZN3WTF13FastAllocBasenwEj | 1852 fun:_ZN3WTF13FastAllocBasenwEj |
| 1807 fun:_ZN7WebCore18MessagePortChannel6createEN3WTF10PassRefPtrINS_26PlatformMes
sagePortChannelEEE | 1853 fun:_ZN7WebCore18MessagePortChannel6createEN3WTF10PassRefPtrINS_26PlatformMes
sagePortChannelEEE |
| 1808 fun:_ZN6WebKit19WebSharedWorkerImpl7connectEPNS_21WebMessagePortChannelEPNS_1
5WebSharedWorker15ConnectListenerE | 1854 fun:_ZN6WebKit19WebSharedWorkerImpl7connectEPNS_21WebMessagePortChannelEPNS_1
5WebSharedWorker15ConnectListenerE |
| 1809 fun:_ZN19WebSharedWorkerStub9OnConnectEii | 1855 fun:_ZN19WebSharedWorkerStub9OnConnectEii |
| 1810 } | 1856 } |
| (...skipping 927 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2738 fun:_ZN3WTF6OwnPtrIN7WebCore28ApplicationCacheHostInternalEED1Ev | 2784 fun:_ZN3WTF6OwnPtrIN7WebCore28ApplicationCacheHostInternalEED1Ev |
| 2739 fun:_ZN7WebCore20ApplicationCacheHostD1Ev | 2785 fun:_ZN7WebCore20ApplicationCacheHostD1Ev |
| 2740 fun:_ZN3WTF14deleteOwnedPtrIN7WebCore20ApplicationCacheHostEEEvPT_ | 2786 fun:_ZN3WTF14deleteOwnedPtrIN7WebCore20ApplicationCacheHostEEEvPT_ |
| 2741 fun:_ZN3WTF6OwnPtrIN7WebCore20ApplicationCacheHostEED1Ev | 2787 fun:_ZN3WTF6OwnPtrIN7WebCore20ApplicationCacheHostEED1Ev |
| 2742 fun:_ZN7WebCore14DocumentLoaderD2Ev | 2788 fun:_ZN7WebCore14DocumentLoaderD2Ev |
| 2743 fun:_ZN6WebKit17WebDataSourceImplD0Ev | 2789 fun:_ZN6WebKit17WebDataSourceImplD0Ev |
| 2744 fun:_ZN3WTF10RefCountedIN7WebCore14DocumentLoaderEE5derefEv | 2790 fun:_ZN3WTF10RefCountedIN7WebCore14DocumentLoaderEE5derefEv |
| 2745 fun:_ZN3WTF6RefPtrIN7WebCore14DocumentLoaderEED1Ev | 2791 fun:_ZN3WTF6RefPtrIN7WebCore14DocumentLoaderEED1Ev |
| 2746 } | 2792 } |
| 2747 { | 2793 { |
| 2748 bug_23416 | |
| 2749 Memcheck:Leak | |
| 2750 fun:_Znw* | |
| 2751 fun:_ZN11webkit_glue16WebURLLoaderImplC1Ev | |
| 2752 fun:_ZN11webkit_glue16WebKitClientImpl15createURLLoaderEv | |
| 2753 fun:_ZN11webkit_glue15ResourceFetcher5StartEPN6WebKit8WebFrameE | |
| 2754 fun:_ZN11webkit_glue15ResourceFetcherC2ERK4GURLPN6WebKit8WebFrameEP14Callback
RunnerI6Tuple2IRKNS4_14WebURLResponseERKSsEE | |
| 2755 fun:_ZN11webkit_glue26ResourceFetcherWithTimeoutC1ERK4GURLPN6WebKit8WebFrameE
iP14CallbackRunnerI6Tuple2IRKNS4_14WebURLResponseERKSsEE | |
| 2756 fun:_ZN11webkit_glue27AltErrorPageResourceFetcherC1ERK4GURLPN6WebKit8WebFrame
ERKNS4_11WebURLErrorEP14CallbackRunnerI6Tuple3IS6_S9_RKSsEE | |
| 2757 } | |
| 2758 { | |
| 2759 bug_42941 | 2794 bug_42941 |
| 2760 Memcheck:Addr4 | 2795 Memcheck:Addr4 |
| 2761 fun:_ZN22TestShellDevToolsAgent11GetWebAgentEv | 2796 fun:_ZN22TestShellDevToolsAgent11GetWebAgentEv |
| 2762 fun:_ZN22TestShellDevToolsAgent22evaluateInWebInspectorElRKSs | 2797 fun:_ZN22TestShellDevToolsAgent22evaluateInWebInspectorElRKSs |
| 2763 fun:_ZN20LayoutTestController22evaluateInWebInspectorERKSt6vectorI10CppVarian
tSaIS1_EEPS1_ | 2798 fun:_ZN20LayoutTestController22evaluateInWebInspectorERKSt6vectorI10CppVarian
tSaIS1_EEPS1_ |
| 2764 fun:_Z16DispatchToMethodI20LayoutTestControllerMS0_FvRKSt6vectorI10CppVariant
SaIS2_EEPS2_ES6_S7_EvPT_T0_RK6Tuple2IT1_T2_E | 2799 fun:_Z16DispatchToMethodI20LayoutTestControllerMS0_FvRKSt6vectorI10CppVariant
SaIS2_EEPS2_ES6_S7_EvPT_T0_RK6Tuple2IT1_T2_E |
| 2765 fun:_ZN12CallbackImplI20LayoutTestControllerMS0_FvRKSt6vectorI10CppVariantSaI
S2_EEPS2_E6Tuple2IS6_S7_EE13RunWithParamsERKSB_ | 2800 fun:_ZN12CallbackImplI20LayoutTestControllerMS0_FvRKSt6vectorI10CppVariantSaI
S2_EEPS2_E6Tuple2IS6_S7_EE13RunWithParamsERKSB_ |
| 2766 fun:_ZN14CallbackRunnerI6Tuple2IRKSt6vectorI10CppVariantSaIS2_EEPS2_EE3RunIS4
_S7_EEvRKT_RKT0_ | 2801 fun:_ZN14CallbackRunnerI6Tuple2IRKSt6vectorI10CppVariantSaIS2_EEPS2_EE3RunIS4
_S7_EEvRKT_RKT0_ |
| 2767 fun:_ZN13CppBoundClass6InvokeEPvPK10_NPVariantjPS1_ | 2802 fun:_ZN13CppBoundClass6InvokeEPvPK10_NPVariantjPS1_ |
| 2768 fun:_ZN11CppNPObject6invokeEP8NPObjectPvPK10_NPVariantjPS3_ | 2803 fun:_ZN11CppNPObject6invokeEP8NPObjectPvPK10_NPVariantjPS3_ |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2932 fun:_ZN4base19MessagePumpLibevent21FileDescriptorWatcherD1Ev | 2967 fun:_ZN4base19MessagePumpLibevent21FileDescriptorWatcherD1Ev |
| 2933 fun:_ZN61MessageLoopTest_FileDescriptorWatcherOutlivesMessageLoop_Test8TestBo
dyEv | 2968 fun:_ZN61MessageLoopTest_FileDescriptorWatcherOutlivesMessageLoop_Test8TestBo
dyEv |
| 2934 } | 2969 } |
| 2935 { | 2970 { |
| 2936 bug_44966 | 2971 bug_44966 |
| 2937 Memcheck:Addr4 | 2972 Memcheck:Addr4 |
| 2938 fun:event_del | 2973 fun:event_del |
| 2939 ... | 2974 ... |
| 2940 fun:*FileDescriptorWatcherOutlivesMessageLoop_Test8TestBodyEv | 2975 fun:*FileDescriptorWatcherOutlivesMessageLoop_Test8TestBodyEv |
| 2941 } | 2976 } |
| 2942 | |
| 2943 { | 2977 { |
| 2944 bug_45133 | 2978 bug_45133 |
| 2945 Memcheck:Leak | 2979 Memcheck:Leak |
| 2946 fun:_Znw* | 2980 fun:_Znw* |
| 2947 ... | 2981 ... |
| 2948 fun:_ZN23ExtensionMessageService24DispatchEventToRenderersERKSsS1_bRK4GURL | 2982 fun:_ZN23ExtensionMessageService24DispatchEventToRenderersERKSsS1_bRK4GURL |
| 2949 fun:_Z13DispatchEventP7ProfilePKcSs | 2983 fun:_Z13DispatchEventP7ProfilePKcSs |
| 2950 fun:_ZN27ExtensionBrowserEventRouter13TabSelectedAtEP11TabContentsS1_ib | 2984 fun:_ZN27ExtensionBrowserEventRouter13TabSelectedAtEP11TabContentsS1_ib |
| 2951 fun:_ZN13TabStripModel26ChangeSelectedContentsFromEP11TabContentsib | 2985 fun:_ZN13TabStripModel26ChangeSelectedContentsFromEP11TabContentsib |
| 2952 fun:_ZN13TabStripModel19InsertTabContentsAtEiP11TabContentsbbb | 2986 fun:_ZN13TabStripModel19InsertTabContentsAtEiP11TabContentsbbb |
| 2953 fun:_ZN13TabStripModel19InsertTabContentsAtEiP11TabContentsbb | 2987 fun:_ZN13TabStripModel19InsertTabContentsAtEiP11TabContentsbb |
| 2954 fun:_ZN13TabStripModel14AddTabContentsEP11TabContentsibjb | 2988 fun:_ZN13TabStripModel14AddTabContentsEP11TabContentsibjb |
| 2955 fun:_ZN7Browser13AddTabWithURLERK4GURLS2_jiiP12SiteInstanceRKSs | 2989 fun:_ZN7Browser13AddTabWithURLERK4GURLS2_jiiP12SiteInstanceRKSs |
| 2956 fun:_ZN11BrowserInit17LaunchWithProfile17OpenTabsInBrowserEP7BrowserbRKSt6vec
torINS0_3TabESaIS4_EE | 2990 fun:_ZN11BrowserInit17LaunchWithProfile17OpenTabsInBrowserEP7BrowserbRKSt6vec
torINS0_3TabESaIS4_EE |
| 2957 fun:_ZN11BrowserInit17LaunchWithProfile17OpenURLsInBrowserEP7BrowserbRKSt6vec
torI4GURLSaIS4_EE | 2991 fun:_ZN11BrowserInit17LaunchWithProfile17OpenURLsInBrowserEP7BrowserbRKSt6vec
torI4GURLSaIS4_EE |
| 2958 fun:_ZN11BrowserInit17LaunchWithProfile17ProcessLaunchURLsEbRKSt6vectorI4GURL
SaIS2_EE | 2992 fun:_ZN11BrowserInit17LaunchWithProfile17ProcessLaunchURLsEbRKSt6vectorI4GURL
SaIS2_EE |
| 2959 fun:_ZN11BrowserInit17LaunchWithProfile6LaunchEP7Profileb | 2993 fun:_ZN11BrowserInit17LaunchWithProfile6LaunchEP7Profileb |
| 2960 fun:_ZN11BrowserInit13LaunchBrowserERK11CommandLineP7ProfileRKSbIwSt11char_tr
aitsIwESaIwEEbPi | 2994 fun:_ZN11BrowserInit13LaunchBrowserERK11CommandLineP7ProfileRKSbIwSt11char_tr
aitsIwESaIwEEbPi |
| 2961 fun:_ZN11BrowserInit18ProcessCmdLineImplERK11CommandLineRKSbIwSt11char_traits
IwESaIwEEbP7ProfilePiPS_ | 2995 fun:_ZN11BrowserInit18ProcessCmdLineImplERK11CommandLineRKSbIwSt11char_traits
IwESaIwEEbP7ProfilePiPS_ |
| 2962 } | 2996 } |
| 2963 | |
| 2964 { | 2997 { |
| 2965 bug_45210 | 2998 bug_45210 |
| 2966 Memcheck:Leak | 2999 Memcheck:Leak |
| 2967 fun:malloc | 3000 fun:malloc |
| 2968 obj:/usr/lib/libcairo.so.2.17.3 | 3001 obj:/usr/lib/libcairo.so.2.17.3 |
| 2969 obj:/usr/lib/libcairo.so.2.17.3 | 3002 obj:/usr/lib/libcairo.so.2.17.3 |
| 2970 fun:_ZN4skia20BitmapPlatformDevice6CreateEiibPh | 3003 fun:_ZN4skia20BitmapPlatformDevice6CreateEiibPh |
| 2971 fun:_ZN4skia14PlatformCanvas10initializeEiibPh | 3004 fun:_ZN4skia14PlatformCanvas10initializeEiibPh |
| 2972 fun:_ZN12TransportDIB17GetPlatformCanvasEii | 3005 fun:_ZN12TransportDIB17GetPlatformCanvasEii |
| 2973 fun:_ZN17RenderProcessImpl16GetDrawingCanvasEPP12TransportDIBRKN3gfx4RectE | 3006 fun:_ZN17RenderProcessImpl16GetDrawingCanvasEPP12TransportDIBRKN3gfx4RectE |
| 2974 fun:_ZN12RenderWidget16DoDeferredUpdateEv | 3007 fun:_ZN12RenderWidget16DoDeferredUpdateEv |
| 2975 fun:_ZN12RenderWidget20CallDoDeferredUpdateEv | 3008 fun:_ZN12RenderWidget20CallDoDeferredUpdateEv |
| 2976 fun:_Z16DispatchToMethodI12RenderWidgetMS0_FvvEEvPT_T0_RK6Tuple0 | 3009 fun:_Z16DispatchToMethodI12RenderWidgetMS0_FvvEEvPT_T0_RK6Tuple0 |
| 2977 fun:_ZN14RunnableMethodI12RenderWidgetMS0_FvvE6Tuple0E3RunEv | 3010 fun:_ZN14RunnableMethodI12RenderWidgetMS0_FvvE6Tuple0E3RunEv |
| 2978 fun:_ZN11MessageLoop7RunTaskEP4Task | 3011 fun:_ZN11MessageLoop7RunTaskEP4Task |
| 2979 } | 3012 } |
| 2980 | |
| 2981 { | 3013 { |
| 2982 bug_45254_InitExtensions_Leak | 3014 bug_45254_InitExtensions_Leak |
| 2983 Memcheck:Leak | 3015 Memcheck:Leak |
| 2984 fun:_Znw* | 3016 fun:_Znw* |
| 2985 fun:_ZN11ProfileImpl14InitExtensionsEv | 3017 fun:_ZN11ProfileImpl14InitExtensionsEv |
| 2986 fun:_ZN14ProfileManager10AddProfileEP7Profileb | 3018 fun:_ZN14ProfileManager10AddProfileEP7Profileb |
| 2987 fun:_ZN14ProfileManager10GetProfileERK8FilePathb | 3019 fun:_ZN14ProfileManager10GetProfileERK8FilePathb |
| 2988 fun:_ZN14ProfileManager10GetProfileERK8FilePath | 3020 fun:_ZN14ProfileManager10GetProfileERK8FilePath |
| 2989 fun:_ZN14ProfileManager17GetDefaultProfileERK8FilePath | 3021 fun:_ZN14ProfileManager17GetDefaultProfileERK8FilePath |
| 2990 fun:_ZN59_GLOBAL__N_chrome_browser_browser_main.cc_00000000_2290686D13CreateP
rofileERK18MainFunctionParamsRK8FilePath | 3022 fun:_ZN59_GLOBAL__N_chrome_browser_browser_main.cc_00000000_2290686D13CreateP
rofileERK18MainFunctionParamsRK8FilePath |
| 2991 fun:_Z11BrowserMainRK18MainFunctionParams | 3023 fun:_Z11BrowserMainRK18MainFunctionParams |
| 2992 fun:ChromeMain | 3024 fun:ChromeMain |
| 2993 fun:main | 3025 fun:main |
| 2994 } | 3026 } |
| 2995 | |
| 2996 { | 3027 { |
| 2997 Bug_45263_ForMisterStatistics | 3028 Bug_45263_ForMisterStatistics |
| 2998 Heapcheck:Leak | 3029 Heapcheck:Leak |
| 2999 ... | 3030 ... |
| 3000 fun:LinearHistogram::FactoryGet | 3031 fun:LinearHistogram::FactoryGet |
| 3001 fun:ClientSocketPoolHistograms | 3032 fun:ClientSocketPoolHistograms |
| 3002 fun:HttpNetworkSession | 3033 fun:HttpNetworkSession |
| 3003 fun:net::HttpNetworkLayer::GetSession | 3034 fun:net::HttpNetworkLayer::GetSession |
| 3004 fun:net::HttpNetworkLayer::CreateTransaction | 3035 fun:net::HttpNetworkLayer::CreateTransaction |
| 3005 fun:net::HttpCache::Transaction::DoSendRequest | 3036 fun:net::HttpCache::Transaction::DoSendRequest |
| (...skipping 13 matching lines...) Expand all Loading... |
| 3019 fun:MessageLoop::DoWork | 3050 fun:MessageLoop::DoWork |
| 3020 fun:base::MessagePumpLibevent::Run | 3051 fun:base::MessagePumpLibevent::Run |
| 3021 fun:MessageLoop::RunInternal | 3052 fun:MessageLoop::RunInternal |
| 3022 fun:MessageLoop::RunHandler | 3053 fun:MessageLoop::RunHandler |
| 3023 fun:MessageLoop::Run | 3054 fun:MessageLoop::Run |
| 3024 fun:base::Thread::Run | 3055 fun:base::Thread::Run |
| 3025 fun:base::Thread::ThreadMain | 3056 fun:base::Thread::ThreadMain |
| 3026 fun:ThreadFunc | 3057 fun:ThreadFunc |
| 3027 fun:start_thread | 3058 fun:start_thread |
| 3028 } | 3059 } |
| 3029 | |
| 3030 { | 3060 { |
| 3031 Bug_45301_UnknownOwner | 3061 Bug_45301_UnknownOwner |
| 3032 Memcheck:Leak | 3062 Memcheck:Leak |
| 3033 fun:_Znw* | 3063 fun:_Znw* |
| 3034 fun:_ZN3IPC11SyncMessage13GenerateReplyEPKNS_7MessageE | 3064 fun:_ZN3IPC11SyncMessage13GenerateReplyEPKNS_7MessageE |
| 3035 fun:_ZN3IPC16MessageWithReplyI6Tuple3I4GURLSsSbIwSt11char_traitsIwESaIwEEE6Tu
ple2IRNS_13ChannelHandleER13WebPluginInfoEE18DispatchDelayReplyI21ResourceMessag
eFilterMSG_FvRKS2_RKSsRKS6_PNS_7MessageEEEEbPKSN_PT_T0_ | 3065 fun:_ZN3IPC16MessageWithReplyI6Tuple3I4GURLSsSbIwSt11char_traitsIwESaIwEEE6Tu
ple2IRNS_13ChannelHandleER13WebPluginInfoEE18DispatchDelayReplyI21ResourceMessag
eFilterMSG_FvRKS2_RKSsRKS6_PNS_7MessageEEEEbPKSN_PT_T0_ |
| 3036 fun:_ZN21ResourceMessageFilter17OnMessageReceivedERKN3IPC7MessageE | 3066 fun:_ZN21ResourceMessageFilter17OnMessageReceivedERKN3IPC7MessageE |
| 3037 fun:_ZN3IPC12ChannelProxy7Context10TryFiltersERKNS_7MessageE | 3067 fun:_ZN3IPC12ChannelProxy7Context10TryFiltersERKNS_7MessageE |
| 3038 fun:_ZN3IPC11SyncChannel11SyncContext17OnMessageReceivedERKNS_7MessageE | 3068 fun:_ZN3IPC11SyncChannel11SyncContext17OnMessageReceivedERKNS_7MessageE |
| 3039 fun:_ZN3IPC7Channel11ChannelImpl23ProcessIncomingMessagesEv | 3069 fun:_ZN3IPC7Channel11ChannelImpl23ProcessIncomingMessagesEv |
| 3040 fun:_ZN3IPC7Channel11ChannelImpl28OnFileCanReadWithoutBlockingEi | 3070 fun:_ZN3IPC7Channel11ChannelImpl28OnFileCanReadWithoutBlockingEi |
| 3041 fun:_ZN4base19MessagePumpLibevent22OnLibeventNotificationEisPv | 3071 fun:_ZN4base19MessagePumpLibevent22OnLibeventNotificationEisPv |
| 3042 fun:event_process_active | 3072 fun:event_process_active |
| 3043 fun:event_base_loop | 3073 fun:event_base_loop |
| 3044 fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE | 3074 fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE |
| 3045 fun:_ZN11MessageLoop11RunInternalEv | 3075 fun:_ZN11MessageLoop11RunInternalEv |
| 3046 fun:_ZN11MessageLoop10RunHandlerEv | 3076 fun:_ZN11MessageLoop10RunHandlerEv |
| 3047 } | 3077 } |
| 3048 | |
| 3049 { | 3078 { |
| 3050 bug_45345 | 3079 bug_45345 |
| 3051 Memcheck:Leak | 3080 Memcheck:Leak |
| 3052 fun:_Znw* | 3081 fun:_Znw* |
| 3053 fun:_ZN4base17LoadNativeLibraryERK8FilePath | 3082 fun:_ZN4base17LoadNativeLibraryERK8FilePath |
| 3054 fun:_ZN5NPAPI9PluginLib4LoadEv | 3083 fun:_ZN5NPAPI9PluginLib4LoadEv |
| 3055 fun:_ZN5NPAPI9PluginLib13NP_InitializeEv | 3084 fun:_ZN5NPAPI9PluginLib13NP_InitializeEv |
| 3056 fun:_ZN21WebPluginDelegateImpl6CreateERK8FilePathRKSsy | 3085 fun:_ZN21WebPluginDelegateImpl6CreateERK8FilePathRKSsy |
| 3057 fun:_ZN19TestWebViewDelegate20CreatePluginDelegateERK8FilePathRKSs | 3086 fun:_ZN19TestWebViewDelegate20CreatePluginDelegateERK8FilePathRKSs |
| 3058 fun:_ZN11webkit_glue13WebPluginImpl10initializeEPN6WebKit18WebPluginContainer
E | 3087 fun:_ZN11webkit_glue13WebPluginImpl10initializeEPN6WebKit18WebPluginContainer
E |
| 3059 fun:_ZN6WebKit21FrameLoaderClientImpl12createPluginERKN7WebCore7IntSizeEPNS1_
17HTMLPlugInElementERKNS1_4KURLERKN3WTF6VectorINS1_6StringELm0EEESF_RKSC_b | 3088 fun:_ZN6WebKit21FrameLoaderClientImpl12createPluginERKN7WebCore7IntSizeEPNS1_
17HTMLPlugInElementERKNS1_4KURLERKN3WTF6VectorINS1_6StringELm0EEESF_RKSC_b |
| 3060 fun:_ZN7WebCore11FrameLoader10loadPluginEPNS_20RenderEmbeddedObjectERKNS_4KUR
LERKNS_6StringERKN3WTF6VectorIS6_Lm0EEESD_b | 3089 fun:_ZN7WebCore11FrameLoader10loadPluginEPNS_20RenderEmbeddedObjectERKNS_4KUR
LERKNS_6StringERKN3WTF6VectorIS6_Lm0EEESD_b |
| 3061 fun:_ZN7WebCore11FrameLoader13requestObjectEPNS_20RenderEmbeddedObjectERKNS_6
StringERKNS_12AtomicStringES5_RKN3WTF6VectorIS3_Lm0EEESD_ | 3090 fun:_ZN7WebCore11FrameLoader13requestObjectEPNS_20RenderEmbeddedObjectERKNS_6
StringERKNS_12AtomicStringES5_RKN3WTF6VectorIS3_Lm0EEESD_ |
| 3062 fun:_ZN7WebCore20RenderEmbeddedObject12updateWidgetEb | 3091 fun:_ZN7WebCore20RenderEmbeddedObject12updateWidgetEb |
| 3063 fun:_ZN7WebCore9FrameView13updateWidgetsEv | 3092 fun:_ZN7WebCore9FrameView13updateWidgetsEv |
| 3064 fun:_ZN7WebCore9FrameView22performPostLayoutTasksEv | 3093 fun:_ZN7WebCore9FrameView22performPostLayoutTasksEv |
| 3065 fun:_ZN7WebCore9FrameView6layoutEb | 3094 fun:_ZN7WebCore9FrameView6layoutEb |
| 3066 } | 3095 } |
| 3067 | |
| 3068 { | 3096 { |
| 3069 bug_46144 | 3097 bug_46144 |
| 3070 Memcheck:Leak | 3098 Memcheck:Leak |
| 3071 ... | 3099 ... |
| 3072 fun:malloc | 3100 fun:malloc |
| 3073 fun:_ZN3WTF10fastMallocEj | 3101 fun:_ZN3WTF10fastMallocEj |
| 3074 fun:_ZN3WTF13FastAllocBasenwEj | 3102 fun:_ZN3WTF13FastAllocBasenwEj |
| 3075 fun:_ZN3WTF20ThreadIdentifierData10initializeEj | 3103 fun:_ZN3WTF20ThreadIdentifierData10initializeEj |
| 3076 } | 3104 } |
| 3077 | |
| 3078 { | 3105 { |
| 3079 bug_46163 | 3106 bug_46163 |
| 3080 Memcheck:Leak | 3107 Memcheck:Leak |
| 3081 fun:_Znw* | 3108 fun:_Znw* |
| 3082 fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE | 3109 fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE |
| 3083 fun:_ZN11MessageLoop11RunInternalEv | 3110 fun:_ZN11MessageLoop11RunInternalEv |
| 3084 fun:_ZN11MessageLoop10RunHandlerEv | 3111 fun:_ZN11MessageLoop10RunHandlerEv |
| 3085 } | 3112 } |
| 3086 | |
| 3087 { | 3113 { |
| 3088 bug_46162 | 3114 bug_46162 |
| 3089 Memcheck:Leak | 3115 Memcheck:Leak |
| 3090 ... | 3116 ... |
| 3091 fun:malloc | 3117 fun:malloc |
| 3092 fun:_ZN3WTF10fastMallocEj | 3118 fun:_ZN3WTF10fastMallocEj |
| 3093 fun:_ZN3WTF13FastAllocBasenwEj | 3119 fun:_ZN3WTF13FastAllocBasenwEj |
| 3094 fun:_ZN3WTF14ThreadSpecificINS_13WTFThreadDataEE3setEPS1_ | 3120 fun:_ZN3WTF14ThreadSpecificINS_13WTFThreadDataEE3setEPS1_ |
| 3095 fun:_ZN3WTF14ThreadSpecificINS_13WTFThreadDataEEcvPS1_Ev | 3121 fun:_ZN3WTF14ThreadSpecificINS_13WTFThreadDataEEcvPS1_Ev |
| 3096 fun:_ZN3WTF14ThreadSpecificINS_13WTFThreadDataEEdeEv | 3122 fun:_ZN3WTF14ThreadSpecificINS_13WTFThreadDataEEdeEv |
| 3097 fun:_ZN3WTF13wtfThreadDataEv | 3123 fun:_ZN3WTF13wtfThreadDataEv |
| 3098 fun:_ZN7WebCore11stringTableEv | 3124 fun:_ZN7WebCore11stringTableEv |
| 3099 fun:_ZN7WebCore12AtomicString3addEPKc | 3125 fun:_ZN7WebCore12AtomicString3addEPKc |
| 3100 fun:_ZN7WebCore12AtomicStringC1EPKc | 3126 fun:_ZN7WebCore12AtomicStringC1EPKc |
| 3101 fun:_ZN7WebCore12AtomicString4initEv | 3127 fun:_ZN7WebCore12AtomicString4initEv |
| 3102 fun:_ZN6WebKit10initializeEPNS_12WebKitClientE | 3128 fun:_ZN6WebKit10initializeEPNS_12WebKitClientE |
| 3103 fun:_ZN12WebKitThread20InternalWebKitThread4InitEv | 3129 fun:_ZN12WebKitThread20InternalWebKitThread4InitEv |
| 3104 fun:_ZN4base6Thread10ThreadMainEv | 3130 fun:_ZN4base6Thread10ThreadMainEv |
| 3105 } | 3131 } |
| 3106 | |
| 3107 { | 3132 { |
| 3108 bug_46161 | 3133 bug_46161 |
| 3109 Memcheck:Leak | 3134 Memcheck:Leak |
| 3110 fun:_Znw* | 3135 fun:_Znw* |
| 3111 fun:_ZN3net14DnsReloadTimer7ExpiredEv | 3136 fun:_ZN3net14DnsReloadTimer7ExpiredEv |
| 3112 fun:_ZN3net22SystemHostResolverProcERKSsNS_13AddressFamilyEiPNS_11AddressList
EPi | 3137 fun:_ZN3net22SystemHostResolverProcERKSsNS_13AddressFamilyEiPNS_11AddressList
EPi |
| 3113 fun:_ZN3net15ResolveAddrInfoEPNS_16HostResolverProcERKSsNS_13AddressFamilyEiP
NS_11AddressListEPi | 3138 fun:_ZN3net15ResolveAddrInfoEPNS_16HostResolverProcERKSsNS_13AddressFamilyEiP
NS_11AddressListEPi |
| 3114 fun:_ZN3net16HostResolverImpl3Job8DoLookupEv | 3139 fun:_ZN3net16HostResolverImpl3Job8DoLookupEv |
| 3115 fun:_Z16DispatchToMethodIN3net16HostResolverImpl3JobEMS2_FvvEEvPT_T0_RK6Tuple
0 | 3140 fun:_Z16DispatchToMethodIN3net16HostResolverImpl3JobEMS2_FvvEEvPT_T0_RK6Tuple
0 |
| 3116 fun:_ZN14RunnableMethodIN3net16HostResolverImpl3JobEMS2_FvvE6Tuple0E3RunEv | 3141 fun:_ZN14RunnableMethodIN3net16HostResolverImpl3JobEMS2_FvvE6Tuple0E3RunEv |
| 3117 } | 3142 } |
| 3118 | |
| 3119 { | 3143 { |
| 3120 bug_46250 | 3144 bug_46250 |
| 3121 Memcheck:Leak | 3145 Memcheck:Leak |
| 3122 fun:_Znw* | 3146 fun:_Znw* |
| 3123 fun:_ZN9__gnu_cxx13new_allocatorIPN11MessageLoop12TaskObserverEE8allocateEjPK
v | 3147 fun:_ZN9__gnu_cxx13new_allocatorIPN11MessageLoop12TaskObserverEE8allocateEjPK
v |
| 3124 fun:_ZNSt12_Vector_baseIPN11MessageLoop12TaskObserverESaIS2_EE11_M_allocateEj | 3148 fun:_ZNSt12_Vector_baseIPN11MessageLoop12TaskObserverESaIS2_EE11_M_allocateEj |
| 3125 fun:_ZNSt6vectorIPN11MessageLoop12TaskObserverESaIS2_EE13_M_insert_auxEN9__gn
u_cxx17__normal_iteratorIPS2_S4_EERKS2_ | 3149 fun:_ZNSt6vectorIPN11MessageLoop12TaskObserverESaIS2_EE13_M_insert_auxEN9__gn
u_cxx17__normal_iteratorIPS2_S4_EERKS2_ |
| 3126 fun:_ZNSt6vectorIPN11MessageLoop12TaskObserverESaIS2_EE9push_backERKS2_ | 3150 fun:_ZNSt6vectorIPN11MessageLoop12TaskObserverESaIS2_EE9push_backERKS2_ |
| 3127 fun:_ZN16ObserverListBaseIN11MessageLoop12TaskObserverEE11AddObserverEPS1_ | 3151 fun:_ZN16ObserverListBaseIN11MessageLoop12TaskObserverEE11AddObserverEPS1_ |
| 3128 fun:_ZN11MessageLoop15AddTaskObserverEPNS_12TaskObserverE | 3152 fun:_ZN11MessageLoop15AddTaskObserverEPNS_12TaskObserverE |
| 3129 fun:_ZN57_GLOBAL__N_chrome_browser_jankometer.cc_*IOJankObserver21AttachToCur
rentThreadEv | 3153 fun:_ZN57_GLOBAL__N_chrome_browser_jankometer.cc_*IOJankObserver21AttachToCur
rentThreadEv |
| 3130 fun:_Z16DispatchToMethodIN57_GLOBAL__N_chrome_browser_jankometer.cc_*IOJankOb
serverEMS1_FvvEEvPT_T0_RK6Tuple0 | 3154 fun:_Z16DispatchToMethodIN57_GLOBAL__N_chrome_browser_jankometer.cc_*IOJankOb
serverEMS1_FvvEEvPT_T0_RK6Tuple0 |
| 3131 fun:_ZN14RunnableMethodIN57_GLOBAL__N_chrome_browser_jankometer.cc_*IOJankObs
erverEMS1_FvvE6Tuple0E3RunEv | 3155 fun:_ZN14RunnableMethodIN57_GLOBAL__N_chrome_browser_jankometer.cc_*IOJankObs
erverEMS1_FvvE6Tuple0E3RunEv |
| 3132 } | 3156 } |
| 3133 | |
| 3134 { | 3157 { |
| 3135 bug_46331 | 3158 bug_46331 |
| 3136 Memcheck:Leak | 3159 Memcheck:Leak |
| 3137 fun:_Znw* | 3160 fun:_Znw* |
| 3138 fun:_ZN12ChromeThread28GetMessageLoopProxyForThreadENS_2IDE | 3161 fun:_ZN12ChromeThread28GetMessageLoopProxyForThreadENS_2IDE |
| 3139 fun:_ZN29ChromeURLRequestContextGetter21GetIOMessageLoopProxyEv | 3162 fun:_ZN29ChromeURLRequestContextGetter21GetIOMessageLoopProxyEv |
| 3140 fun:_ZN23URLRequestContextGetter10OnDestructEv | 3163 fun:_ZN23URLRequestContextGetter10OnDestructEv |
| 3141 fun:_ZN29URLRequestContextGetterTraits8DestructEP23URLRequestContextGetter | 3164 fun:_ZN29URLRequestContextGetterTraits8DestructEP23URLRequestContextGetter |
| 3142 fun:_ZN4base20RefCountedThreadSafeI23URLRequestContextGetter29URLRequestConte
xtGetterTraitsE7ReleaseEv | 3165 fun:_ZN4base20RefCountedThreadSafeI23URLRequestContextGetter29URLRequestConte
xtGetterTraitsE7ReleaseEv |
| 3143 fun:_ZN13scoped_refptrI23URLRequestContextGetterED1Ev | 3166 fun:_ZN13scoped_refptrI23URLRequestContextGetterED1Ev |
| 3144 fun:_ZN27SafeBrowsingProtocolManagerD1Ev | 3167 fun:_ZN27SafeBrowsingProtocolManagerD1Ev |
| 3145 fun:_ZN19SafeBrowsingService12OnIOShutdownEv | 3168 fun:_ZN19SafeBrowsingService12OnIOShutdownEv |
| 3146 fun:_Z16DispatchToMethodI19SafeBrowsingServiceMS0_FvvEEvPT_T0_RK6Tuple0 | 3169 fun:_Z16DispatchToMethodI19SafeBrowsingServiceMS0_FvvEEvPT_T0_RK6Tuple0 |
| 3147 fun:_ZN14RunnableMethodI19SafeBrowsingServiceMS0_FvvE6Tuple0E3RunEv | 3170 fun:_ZN14RunnableMethodI19SafeBrowsingServiceMS0_FvvE6Tuple0E3RunEv |
| 3148 } | 3171 } |
| 3149 | |
| 3150 { | 3172 { |
| 3151 bug_46332 | 3173 bug_46332 |
| 3152 Memcheck:Leak | 3174 Memcheck:Leak |
| 3153 fun:_Znw* | 3175 fun:_Znw* |
| 3154 fun:_ZNSs4_Rep9_S_createEjjRKSaIcE | 3176 fun:_ZNSs4_Rep9_S_createEjjRKSaIcE |
| 3155 fun:_ZNSs4_Rep8_M_cloneERKSaIcEj | 3177 fun:_ZNSs4_Rep8_M_cloneERKSaIcEj |
| 3156 fun:_ZNSs7reserveEj | 3178 fun:_ZNSs7reserveEj |
| 3157 fun:_ZNSs6appendEPKcj | 3179 fun:_ZNSs6appendEPKcj |
| 3158 fun:_ZNSs6appendEPKc | 3180 fun:_ZNSs6appendEPKc |
| 3159 fun:_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_PKS3_ | 3181 fun:_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_PKS3_ |
| 3160 fun:_ZNK21URLRequestMockHTTPJob20GetResponseInfoConstEPN3net16HttpResponseInf
oE | 3182 fun:_ZNK21URLRequestMockHTTPJob20GetResponseInfoConstEPN3net16HttpResponseInf
oE |
| 3161 } | 3183 } |
| 3162 | |
| 3163 { | 3184 { |
| 3164 bug_46343_a | 3185 bug_46343_a |
| 3165 Memcheck:Leak | 3186 Memcheck:Leak |
| 3166 fun:_Znw* | 3187 fun:_Znw* |
| 3167 fun:_ZN9__gnu_cxx13new_allocatorIiE8allocateEjPKv | 3188 fun:_ZN9__gnu_cxx13new_allocatorIiE8allocateEjPKv |
| 3168 fun:_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEj | 3189 fun:_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEj |
| 3169 fun:_ZNSt6vectorIiSaIiEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPiS1_E
ERKi | 3190 fun:_ZNSt6vectorIiSaIiEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPiS1_E
ERKi |
| 3170 fun:_ZNSt6vectorIiSaIiEE9push_backERKi | 3191 fun:_ZNSt6vectorIiSaIiEE9push_backERKi |
| 3171 fun:_ZN10ZygoteHost12ForkRendererERKSt6vectorISsSaISsEERKS0_ISt4pairIjiESaIS6
_EE | 3192 fun:_ZN10ZygoteHost12ForkRendererERKSt6vectorISsSaISsEERKS0_ISt4pairIjiESaIS6
_EE |
| 3172 fun:_ZN20ChildProcessLauncher7Context14LaunchInternalEbRKSt6vectorISt4pairISs
SsESaIS3_EEiP11CommandLine | 3193 fun:_ZN20ChildProcessLauncher7Context14LaunchInternalEbRKSt6vectorISt4pairISs
SsESaIS3_EEiP11CommandLine |
| 3173 fun:_Z16DispatchToMethodIN20ChildProcessLauncher7ContextEMS1_FvbRKSt6vectorIS
t4pairISsSsESaIS4_EEiP11CommandLineEbS6_iSA_EvPT_T0_RK6Tuple4IT1_T2_T3_T4_E | 3194 fun:_Z16DispatchToMethodIN20ChildProcessLauncher7ContextEMS1_FvbRKSt6vectorIS
t4pairISsSsESaIS4_EEiP11CommandLineEbS6_iSA_EvPT_T0_RK6Tuple4IT1_T2_T3_T4_E |
| 3174 fun:_ZN14RunnableMethodIN20ChildProcessLauncher7ContextEMS1_FvbRKSt6vectorISt
4pairISsSsESaIS4_EEiP11CommandLineE6Tuple4IbS6_iSA_EE3RunEv | 3195 fun:_ZN14RunnableMethodIN20ChildProcessLauncher7ContextEMS1_FvbRKSt6vectorISt
4pairISsSsESaIS4_EEiP11CommandLineE6Tuple4IbS6_iSA_EE3RunEv |
| 3175 fun:_ZN11MessageLoop7RunTaskEP4Task | 3196 fun:_ZN11MessageLoop7RunTaskEP4Task |
| 3176 } | 3197 } |
| 3177 | |
| 3178 { | 3198 { |
| 3179 bug_46343_b | 3199 bug_46343_b |
| 3180 Memcheck:Leak | 3200 Memcheck:Leak |
| 3181 ... | 3201 ... |
| 3182 fun:realloc | 3202 fun:realloc |
| 3183 fun:_ZN6Pickle6ResizeEj | 3203 fun:_ZN6Pickle6ResizeEj |
| 3184 fun:_ZN6Pickle10BeginWriteEj | 3204 fun:_ZN6Pickle10BeginWriteEj |
| 3185 fun:_ZN6Pickle10WriteBytesEPKvi | 3205 fun:_ZN6Pickle10WriteBytesEPKvi |
| 3186 fun:_ZN6Pickle11WriteStringERKSs | 3206 fun:_ZN6Pickle11WriteStringERKSs |
| 3187 fun:_ZN10ZygoteHost12ForkRendererERKSt6vectorISsSaISsEERKS0_ISt4pairIjiESaIS6
_EE | 3207 fun:_ZN10ZygoteHost12ForkRendererERKSt6vectorISsSaISsEERKS0_ISt4pairIjiESaIS6
_EE |
| 3188 fun:_ZN20ChildProcessLauncher7Context14LaunchInternalEbRKSt6vectorISt4pairISs
SsESaIS3_EEiP11CommandLine | 3208 fun:_ZN20ChildProcessLauncher7Context14LaunchInternalEbRKSt6vectorISt4pairISs
SsESaIS3_EEiP11CommandLine |
| 3189 fun:_Z16DispatchToMethodIN20ChildProcessLauncher7ContextEMS1_FvbRKSt6vectorIS
t4pairISsSsESaIS4_EEiP11CommandLineEbS6_iSA_EvPT_T0_RK6Tuple4IT1_T2_T3_T4_E | 3209 fun:_Z16DispatchToMethodIN20ChildProcessLauncher7ContextEMS1_FvbRKSt6vectorIS
t4pairISsSsESaIS4_EEiP11CommandLineEbS6_iSA_EvPT_T0_RK6Tuple4IT1_T2_T3_T4_E |
| 3190 fun:_ZN14RunnableMethodIN20ChildProcessLauncher7ContextEMS1_FvbRKSt6vectorISt
4pairISsSsESaIS4_EEiP11CommandLineE6Tuple4IbS6_iSA_EE3RunEv | 3210 fun:_ZN14RunnableMethodIN20ChildProcessLauncher7ContextEMS1_FvbRKSt6vectorISt
4pairISsSsESaIS4_EEiP11CommandLineE6Tuple4IbS6_iSA_EE3RunEv |
| 3191 fun:_ZN11MessageLoop7RunTaskEP4Task | 3211 fun:_ZN11MessageLoop7RunTaskEP4Task |
| 3192 } | 3212 } |
| 3193 | |
| 3194 { | 3213 { |
| 3195 bug_46343_c | 3214 bug_46343_c |
| 3196 Memcheck:Leak | 3215 Memcheck:Leak |
| 3197 fun:_Znw* | 3216 fun:_Znw* |
| 3198 fun:_ZN9__gnu_cxx13new_allocatorISt4pairIjiEE8allocateEjPKv | 3217 fun:_ZN9__gnu_cxx13new_allocatorISt4pairIjiEE8allocateEjPKv |
| 3199 fun:_ZNSt12_Vector_baseISt4pairIjiESaIS1_EE11_M_allocateEj | 3218 fun:_ZNSt12_Vector_baseISt4pairIjiESaIS1_EE11_M_allocateEj |
| 3200 fun:_ZNSt6vectorISt4pairIjiESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_ite
ratorIPS1_S3_EERKS1_ | 3219 fun:_ZNSt6vectorISt4pairIjiESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_ite
ratorIPS1_S3_EERKS1_ |
| 3201 fun:_ZNSt6vectorISt4pairIjiESaIS1_EE9push_backERKS1_ | 3220 fun:_ZNSt6vectorISt4pairIjiESaIS1_EE9push_backERKS1_ |
| 3202 fun:_ZN20ChildProcessLauncher7Context14LaunchInternalEbRKSt6vectorISt4pairISs
SsESaIS3_EEiP11CommandLine | 3221 fun:_ZN20ChildProcessLauncher7Context14LaunchInternalEbRKSt6vectorISt4pairISs
SsESaIS3_EEiP11CommandLine |
| 3203 fun:_Z16DispatchToMethodIN20ChildProcessLauncher7ContextEMS1_FvbRKSt6vectorIS
t4pairISsSsESaIS4_EEiP11CommandLineEbS6_iSA_EvPT_T0_RK6Tuple4IT1_T2_T3_T4_E | 3222 fun:_Z16DispatchToMethodIN20ChildProcessLauncher7ContextEMS1_FvbRKSt6vectorIS
t4pairISsSsESaIS4_EEiP11CommandLineEbS6_iSA_EvPT_T0_RK6Tuple4IT1_T2_T3_T4_E |
| 3204 fun:_ZN14RunnableMethodIN20ChildProcessLauncher7ContextEMS1_FvbRKSt6vectorISt
4pairISsSsESaIS4_EEiP11CommandLineE6Tuple4IbS6_iSA_EE3RunEv | 3223 fun:_ZN14RunnableMethodIN20ChildProcessLauncher7ContextEMS1_FvbRKSt6vectorISt
4pairISsSsESaIS4_EEiP11CommandLineE6Tuple4IbS6_iSA_EE3RunEv |
| 3205 fun:_ZN11MessageLoop7RunTaskEP4Task | 3224 fun:_ZN11MessageLoop7RunTaskEP4Task |
| 3206 } | 3225 } |
| 3207 | |
| 3208 { | 3226 { |
| 3209 bug_46345 | 3227 bug_46345 |
| 3210 Memcheck:Leak | 3228 Memcheck:Leak |
| 3211 fun:_Znw* | 3229 fun:_Znw* |
| 3212 fun:_ZN22ResourceDispatcherHost23CompleteResponseStartedEP10URLRequest | 3230 fun:_ZN22ResourceDispatcherHost23CompleteResponseStartedEP10URLRequest |
| 3213 fun:_ZN22ResourceDispatcherHost17OnResponseStartedEP10URLRequest | 3231 fun:_ZN22ResourceDispatcherHost17OnResponseStartedEP10URLRequest |
| 3214 fun:_ZN10URLRequest15ResponseStartedEv | 3232 fun:_ZN10URLRequest15ResponseStartedEv |
| 3215 fun:_ZN13URLRequestJob21NotifyHeadersCompleteEv | 3233 fun:_ZN13URLRequestJob21NotifyHeadersCompleteEv |
| 3216 fun:_ZN17URLRequestFileJob10DidResolveEbRKN9file_util8FileInfoE | 3234 fun:_ZN17URLRequestFileJob10DidResolveEbRKN9file_util8FileInfoE |
| 3217 fun:_Z16DispatchToMethodI17URLRequestFileJobMS0_FvbRKN9file_util8FileInfoEEbS
2_EvPT_T0_RK6Tuple2IT1_T2_E | 3235 fun:_Z16DispatchToMethodI17URLRequestFileJobMS0_FvbRKN9file_util8FileInfoEEbS
2_EvPT_T0_RK6Tuple2IT1_T2_E |
| 3218 fun:_ZN14RunnableMethodI17URLRequestFileJobMS0_FvbRKN9file_util8FileInfoEE6Tu
ple2IbS2_EE3RunEv | 3236 fun:_ZN14RunnableMethodI17URLRequestFileJobMS0_FvbRKN9file_util8FileInfoEE6Tu
ple2IbS2_EE3RunEv |
| 3219 fun:_ZN11MessageLoop7RunTaskEP4Task | 3237 fun:_ZN11MessageLoop7RunTaskEP4Task |
| 3220 } | 3238 } |
| 3221 { | 3239 { |
| 3222 bug_46420 | 3240 bug_46420 |
| 3223 Memcheck:Addr4 | 3241 Memcheck:Addr4 |
| 3224 fun:_Z25WillHandleBrowserAboutURLP4GURLP7Profile | 3242 fun:_Z25WillHandleBrowserAboutURLP4GURLP7Profile |
| 3225 fun:_ZN54BrowserAboutHandlerTest_WillHandleBrowserAboutURL_Test8TestBodyEv | 3243 fun:_ZN54BrowserAboutHandlerTest_WillHandleBrowserAboutURL_Test8TestBodyEv |
| 3226 } | 3244 } |
| 3227 | |
| 3228 { | 3245 { |
| 3229 bug_46558 | 3246 bug_46558 |
| 3230 Memcheck:Cond | 3247 Memcheck:Cond |
| 3231 fun:_ZN8chromeos11CrosLibraryD0Ev | 3248 fun:_ZN8chromeos11CrosLibraryD0Ev |
| 3232 fun:_ZN22DefaultSingletonTraitsIN8chromeos11CrosLibraryEE6DeleteEPS1_ | 3249 fun:_ZN22DefaultSingletonTraitsIN8chromeos11CrosLibraryEE6DeleteEPS1_ |
| 3233 fun:_ZN9SingletonIN8chromeos11CrosLibraryE22DefaultSingletonTraitsIS1_ES1_E6O
nExitEPv | 3250 fun:_ZN9SingletonIN8chromeos11CrosLibraryE22DefaultSingletonTraitsIS1_ES1_E6O
nExitEPv |
| 3234 fun:_ZN4base13AtExitManager19ProcessCallbacksNowEv | 3251 fun:_ZN4base13AtExitManager19ProcessCallbacksNowEv |
| 3235 fun:_ZN4base13AtExitManagerD1Ev | 3252 fun:_ZN4base13AtExitManagerD1Ev |
| 3236 fun:_ZN9TestSuiteD2Ev | 3253 fun:_ZN9TestSuiteD2Ev |
| 3237 fun:_ZN15ChromeTestSuiteD1Ev | 3254 fun:_ZN15ChromeTestSuiteD1Ev |
| 3238 fun:main | 3255 fun:main |
| 3239 } | 3256 } |
| 3240 | |
| 3241 { | 3257 { |
| 3242 bug_46560 | 3258 bug_46560 |
| 3243 Memcheck:Leak | 3259 Memcheck:Leak |
| 3244 fun:_Znw* | 3260 fun:_Znw* |
| 3245 fun:_ZN8chromeos11CrosLibrary18GetKeyboardLibraryEv | 3261 fun:_ZN8chromeos11CrosLibrary18GetKeyboardLibraryEv |
| 3246 fun:_ZN8chromeos18LanguageMenuButtonC1EPNS_14StatusAreaHostE | 3262 fun:_ZN8chromeos18LanguageMenuButtonC1EPNS_14StatusAreaHostE |
| 3247 fun:_ZN8chromeos14StatusAreaView4InitEv | 3263 fun:_ZN8chromeos14StatusAreaView4InitEv |
| 3248 fun:_ZN8chromeos21BrowserStatusAreaView4InitEv | 3264 fun:_ZN8chromeos21BrowserStatusAreaView4InitEv |
| 3249 fun:_ZN8chromeos11BrowserView4InitEv | 3265 fun:_ZN8chromeos11BrowserView4InitEv |
| 3250 fun:_ZN11BrowserView20ViewHierarchyChangedEbPN5views4ViewES2_ | 3266 fun:_ZN11BrowserView20ViewHierarchyChangedEbPN5views4ViewES2_ |
| 3251 fun:_ZN5views4View24ViewHierarchyChangedImplEbbPS0_S1_ | 3267 fun:_ZN5views4View24ViewHierarchyChangedImplEbbPS0_S1_ |
| 3252 fun:_ZN5views4View25PropagateAddNotificationsEPS0_S1_ | 3268 fun:_ZN5views4View25PropagateAddNotificationsEPS0_S1_ |
| 3253 fun:_ZN5views4View12AddChildViewEiPS0_ | 3269 fun:_ZN5views4View12AddChildViewEiPS0_ |
| 3254 fun:_ZN5views13NonClientView20ViewHierarchyChangedEbPNS_4ViewES2_ | 3270 fun:_ZN5views13NonClientView20ViewHierarchyChangedEbPNS_4ViewES2_ |
| 3255 fun:_ZN5views4View24ViewHierarchyChangedImplEbbPS0_S1_ | 3271 fun:_ZN5views4View24ViewHierarchyChangedImplEbbPS0_S1_ |
| 3256 fun:_ZN5views4View25PropagateAddNotificationsEPS0_S1_ | 3272 fun:_ZN5views4View25PropagateAddNotificationsEPS0_S1_ |
| 3257 fun:_ZN5views4View12AddChildViewEiPS0_ | 3273 fun:_ZN5views4View12AddChildViewEiPS0_ |
| 3258 fun:_ZN5views4View12AddChildViewEPS0_ | 3274 fun:_ZN5views4View12AddChildViewEPS0_ |
| 3259 fun:_ZN5views8RootView15SetContentsViewEPNS_4ViewE | 3275 fun:_ZN5views8RootView15SetContentsViewEPNS_4ViewE |
| 3260 fun:_ZN5views9WidgetGtk15SetContentsViewEPNS_4ViewE | 3276 fun:_ZN5views9WidgetGtk15SetContentsViewEPNS_4ViewE |
| 3261 fun:_ZN5views9WindowGtk4InitEP10_GtkWindowRKN3gfx4RectE | 3277 fun:_ZN5views9WindowGtk4InitEP10_GtkWindowRKN3gfx4RectE |
| 3262 fun:_ZN15BrowserFrameGtk4InitEv | 3278 fun:_ZN15BrowserFrameGtk4InitEv |
| 3263 fun:_ZN8chromeos20BrowserFrameChromeos4InitEv | 3279 fun:_ZN8chromeos20BrowserFrameChromeos4InitEv |
| 3264 } | 3280 } |
| 3265 | |
| 3266 { | 3281 { |
| 3267 bug_46569 | 3282 bug_46569 |
| 3268 Memcheck:Leak | 3283 Memcheck:Leak |
| 3269 fun:_Znw* | 3284 fun:_Znw* |
| 3270 fun:_ZN3net10FileStream12AsyncContext23OnBackgroundIOCompletedEi | 3285 fun:_ZN3net10FileStream12AsyncContext23OnBackgroundIOCompletedEi |
| 3271 fun:_Z16DispatchToMethodIN3net10FileStream12AsyncContextEMS2_FviEiEvPT_T0_RK6
Tuple1IT1_E | 3286 fun:_Z16DispatchToMethodIN3net10FileStream12AsyncContextEMS2_FviEiEvPT_T0_RK6
Tuple1IT1_E |
| 3272 fun:_ZN12CallbackImplIN3net10FileStream12AsyncContextEMS2_FviE6Tuple1IiEE13Ru
nWithParamsERKS6_ | 3287 fun:_ZN12CallbackImplIN3net10FileStream12AsyncContextEMS2_FviE6Tuple1IiEE13Ru
nWithParamsERKS6_ |
| 3273 fun:_ZN14CallbackRunnerI6Tuple1IiEE3RunIiEEvRKT_ | 3288 fun:_ZN14CallbackRunnerI6Tuple1IiEE3RunIiEEvRKT_ |
| 3274 } | 3289 } |
| 3275 | |
| 3276 { | 3290 { |
| 3277 bug_46570_a | 3291 bug_46570_a |
| 3278 Memcheck:Leak | 3292 Memcheck:Leak |
| 3279 fun:_Znw* | 3293 fun:_Znw* |
| 3280 fun:_ZNSs4_Rep9_S_createEjjRKSaIcE | 3294 fun:_ZNSs4_Rep9_S_createEjjRKSaIcE |
| 3281 fun:_ZNSs4_Rep8_M_cloneERKSaIcEj | 3295 fun:_ZNSs4_Rep8_M_cloneERKSaIcEj |
| 3282 fun:_ZNSs7reserveEj | 3296 fun:_ZNSs7reserveEj |
| 3283 fun:_ZNSs6appendERKSs | 3297 fun:_ZNSs6appendERKSs |
| 3284 fun:_ZNK8FilePath6AppendERKSs | 3298 fun:_ZNK8FilePath6AppendERKSs |
| 3285 fun:_ZN9file_util31CreateAndOpenFdForTemporaryFileE8FilePathPS0_ | 3299 fun:_ZN9file_util31CreateAndOpenFdForTemporaryFileE8FilePathPS0_ |
| 3286 fun:_ZN9file_util31CreateAndOpenTemporaryFileInDirERK8FilePathPS0_ | 3300 fun:_ZN9file_util31CreateAndOpenTemporaryFileInDirERK8FilePathPS0_ |
| 3287 fun:_ZN9file_util31CreateAndOpenTemporaryShmemFileEP8FilePath | 3301 fun:_ZN9file_util31CreateAndOpenTemporaryShmemFileEP8FilePath |
| 3288 fun:_ZN4base12SharedMemory12CreateOrOpenERKSbIwSt11char_traitsIwESaIwEEij | 3302 fun:_ZN4base12SharedMemory12CreateOrOpenERKSbIwSt11char_traitsIwESaIwEEij |
| 3289 fun:_ZN4base12SharedMemory6CreateERKSbIwSt11char_traitsIwESaIwEEbbj | 3303 fun:_ZN4base12SharedMemory6CreateERKSbIwSt11char_traitsIwESaIwEEbbj |
| 3290 fun:_ZN14SharedIOBuffer4InitEv | 3304 fun:_ZN14SharedIOBuffer4InitEv |
| 3291 fun:_ZN20AsyncResourceHandler10OnWillReadEiPPN3net8IOBufferEPii | 3305 fun:_ZN20AsyncResourceHandler10OnWillReadEiPPN3net8IOBufferEPii |
| 3292 fun:_ZN23BufferedResourceHandler10OnWillReadEiPPN3net8IOBufferEPii | 3306 fun:_ZN23BufferedResourceHandler10OnWillReadEiPPN3net8IOBufferEPii |
| 3293 fun:_ZN27SafeBrowsingResourceHandler10OnWillReadEiPPN3net8IOBufferEPii | 3307 fun:_ZN27SafeBrowsingResourceHandler10OnWillReadEiPPN3net8IOBufferEPii |
| 3294 fun:_ZN22ResourceDispatcherHost4ReadEP10URLRequestPi | 3308 fun:_ZN22ResourceDispatcherHost4ReadEP10URLRequestPi |
| 3295 fun:_ZN22ResourceDispatcherHost15OnReadCompletedEP10URLRequesti | 3309 fun:_ZN22ResourceDispatcherHost15OnReadCompletedEP10URLRequesti |
| 3296 fun:_ZN13URLRequestJob18NotifyReadCompleteEi | 3310 fun:_ZN13URLRequestJob18NotifyReadCompleteEi |
| 3297 fun:_ZN19URLRequestChromeJob13DataAvailableEP16RefCountedMemory | 3311 fun:_ZN19URLRequestChromeJob13DataAvailableEP16RefCountedMemory |
| 3298 fun:_ZN20ChromeURLDataManager13DataAvailableEi13scoped_refptrI16RefCountedMem
oryE | 3312 fun:_ZN20ChromeURLDataManager13DataAvailableEi13scoped_refptrI16RefCountedMem
oryE |
| 3299 fun:_Z16DispatchToMethodI20ChromeURLDataManagerMS0_Fvi13scoped_refptrI16RefCo
untedMemoryEEiS3_EvPT_T0_RK6Tuple2IT1_T2_E | 3313 fun:_Z16DispatchToMethodI20ChromeURLDataManagerMS0_Fvi13scoped_refptrI16RefCo
untedMemoryEEiS3_EvPT_T0_RK6Tuple2IT1_T2_E |
| 3300 fun:_ZN14RunnableMethodI20ChromeURLDataManagerMS0_Fvi13scoped_refptrI16RefCou
ntedMemoryEE6Tuple2IiS3_EE3RunEv | 3314 fun:_ZN14RunnableMethodI20ChromeURLDataManagerMS0_Fvi13scoped_refptrI16RefCou
ntedMemoryEE6Tuple2IiS3_EE3RunEv |
| 3301 } | 3315 } |
| 3302 | |
| 3303 { | 3316 { |
| 3304 bug_46570_b | 3317 bug_46570_b |
| 3305 Memcheck:Leak | 3318 Memcheck:Leak |
| 3306 fun:_Znw* | 3319 fun:_Znw* |
| 3307 fun:_ZNSs4_Rep9_S_createEjjRKSaIcE | 3320 fun:_ZNSs4_Rep9_S_createEjjRKSaIcE |
| 3308 obj:/usr/lib/libstdc++.so.6.0.9 | 3321 obj:/usr/lib/libstdc++.so.6.0.9 |
| 3309 fun:_ZNSsC1EPKcRKSaIcE | 3322 fun:_ZNSsC1EPKcRKSaIcE |
| 3310 fun:_ZN9file_util15GetShmemTempDirEP8FilePath | 3323 fun:_ZN9file_util15GetShmemTempDirEP8FilePath |
| 3311 fun:_ZN9file_util31CreateAndOpenTemporaryShmemFileEP8FilePath | 3324 fun:_ZN9file_util31CreateAndOpenTemporaryShmemFileEP8FilePath |
| 3312 fun:_ZN4base12SharedMemory12CreateOrOpenERKSbIwSt11char_traitsIwESaIwEEij | 3325 fun:_ZN4base12SharedMemory12CreateOrOpenERKSbIwSt11char_traitsIwESaIwEEij |
| 3313 fun:_ZN4base12SharedMemory6CreateERKSbIwSt11char_traitsIwESaIwEEbbj | 3326 fun:_ZN4base12SharedMemory6CreateERKSbIwSt11char_traitsIwESaIwEEbbj |
| 3314 fun:_ZN14SharedIOBuffer4InitEv | 3327 fun:_ZN14SharedIOBuffer4InitEv |
| 3315 fun:_ZN20AsyncResourceHandler10OnWillReadEiPPN3net8IOBufferEPii | 3328 fun:_ZN20AsyncResourceHandler10OnWillReadEiPPN3net8IOBufferEPii |
| 3316 fun:_ZN23BufferedResourceHandler10OnWillReadEiPPN3net8IOBufferEPii | 3329 fun:_ZN23BufferedResourceHandler10OnWillReadEiPPN3net8IOBufferEPii |
| 3317 fun:_ZN27SafeBrowsingResourceHandler10OnWillReadEiPPN3net8IOBufferEPii | 3330 fun:_ZN27SafeBrowsingResourceHandler10OnWillReadEiPPN3net8IOBufferEPii |
| 3318 fun:_ZN22ResourceDispatcherHost4ReadEP10URLRequestPi | 3331 fun:_ZN22ResourceDispatcherHost4ReadEP10URLRequestPi |
| 3319 fun:_ZN22ResourceDispatcherHost15OnReadCompletedEP10URLRequesti | 3332 fun:_ZN22ResourceDispatcherHost15OnReadCompletedEP10URLRequesti |
| 3320 fun:_ZN13URLRequestJob18NotifyReadCompleteEi | 3333 fun:_ZN13URLRequestJob18NotifyReadCompleteEi |
| 3321 fun:_ZN19URLRequestChromeJob13DataAvailableEP16RefCountedMemory | 3334 fun:_ZN19URLRequestChromeJob13DataAvailableEP16RefCountedMemory |
| 3322 fun:_ZN20ChromeURLDataManager13DataAvailableEi13scoped_refptrI16RefCountedMem
oryE | 3335 fun:_ZN20ChromeURLDataManager13DataAvailableEi13scoped_refptrI16RefCountedMem
oryE |
| 3323 fun:_Z16DispatchToMethodI20ChromeURLDataManagerMS0_Fvi13scoped_refptrI16RefCo
untedMemoryEEiS3_EvPT_T0_RK6Tuple2IT1_T2_E | 3336 fun:_Z16DispatchToMethodI20ChromeURLDataManagerMS0_Fvi13scoped_refptrI16RefCo
untedMemoryEEiS3_EvPT_T0_RK6Tuple2IT1_T2_E |
| 3324 fun:_ZN14RunnableMethodI20ChromeURLDataManagerMS0_Fvi13scoped_refptrI16RefCou
ntedMemoryEE6Tuple2IiS3_EE3RunEv | 3337 fun:_ZN14RunnableMethodI20ChromeURLDataManagerMS0_Fvi13scoped_refptrI16RefCou
ntedMemoryEE6Tuple2IiS3_EE3RunEv |
| 3325 } | 3338 } |
| 3326 { | 3339 { |
| 3327 bug_10553 | 3340 bug_46678_v_a |
| 3328 Memcheck:Leak | 3341 Memcheck:Leak |
| 3329 fun:_Znw* | 3342 fun:_Znw* |
| 3330 fun:_ZN7history14HistoryBackend8InitImplEv | 3343 fun:_Z11NewCallbackIN8remoting14SessionManagerEPKNS0_24UpdateStreamPacketHead
erERK13scoped_refptrIN5media10DataBufferEEiEPN9Callback3IT0_T1_T2_E4TypeEPT_MSI_
FvSC_SD_SE_E |
| 3331 fun:_ZN7history14HistoryBackend4InitEb | 3344 fun:_ZN8remoting14SessionManager8DoEncodeE13scoped_refptrINS_8Capturer11Captu
reDataEE |
| 3332 fun:_Z16DispatchToMethodIN7history14HistoryBackendEMS1_FvbEbEvPT_T0_RK6Tuple1
IT1_E | 3345 fun:_Z16DispatchToMethodIN8remoting14SessionManagerEMS1_Fv13scoped_refptrINS0
_8Capturer11CaptureDataEEES5_EvPT_T0_RK6Tuple1IT1_E |
| 3333 fun:_ZN14RunnableMethodIN7history14HistoryBackendEMS1_FvbE6Tuple1IbEE3RunEv | 3346 fun:_ZN14RunnableMethodIN8remoting14SessionManagerEMS1_Fv13scoped_refptrINS0_
8Capturer11CaptureDataEEE6Tuple1IS5_EE3RunEv |
| 3334 fun:_ZN11MessageLoop7RunTaskEP4Task | 3347 } |
| 3335 fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE | 3348 { |
| 3336 fun:_ZN11MessageLoop6DoWorkEv | 3349 bug_46678_v_b |
| 3337 fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE | 3350 Memcheck:Leak |
| 3338 fun:_ZN11MessageLoop11RunInternalEv | 3351 fun:_Znw* |
| 3339 fun:_ZN11MessageLoop10RunHandlerEv | 3352 fun:_Z11NewCallbackIN8remoting14SessionManagerEPNS0_11HostMessageEiEPN9Callba
ck2IT0_T1_E4TypeEPT_MSA_FvS5_S6_E |
| 3353 fun:_ZN8remoting14SessionManager8DoEncodeE13scoped_refptrINS_8Capturer11Captu
reDataEE |
| 3354 fun:_Z16DispatchToMethodIN8remoting14SessionManagerEMS1_Fv13scoped_refptrINS0
_8Capturer11CaptureDataEEES5_EvPT_T0_RK6Tuple1IT1_E |
| 3355 fun:_ZN14RunnableMethodIN8remoting14SessionManagerEMS1_Fv13scoped_refptrINS0_
8Capturer11CaptureDataEEE6Tuple1IS5_EE3RunEv |
| 3340 } | 3356 } |
| 3341 { | 3357 { |
| 3342 bug_46886_a | 3358 bug_46886_a |
| 3343 Memcheck:Leak | 3359 Memcheck:Leak |
| 3344 fun:_Znw* | 3360 fun:_Znw* |
| 3345 fun:_ZN3net15SpdySessionPool3GetERKNS_12HostPortPairEPNS_18HttpNetworkSessionE
RKNS_11BoundNetLogE | 3361 fun:_ZN3net15SpdySessionPool3GetERKNS_12HostPortPairEPNS_18HttpNetworkSessionE
RKNS_11BoundNetLogE |
| 3346 fun:*SpdyHttpStreamTest17CreateSpdySessionEv | 3362 fun:*SpdyHttpStreamTest17CreateSpdySessionEv |
| 3347 fun:*SpdyHttpStreamTest_SendRequest_Test8TestBodyEv | 3363 fun:*SpdyHttpStreamTest_SendRequest_Test8TestBodyEv |
| 3348 } | 3364 } |
| 3349 { | 3365 { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 3363 { | 3379 { |
| 3364 bug_46886_d | 3380 bug_46886_d |
| 3365 Memcheck:Leak | 3381 Memcheck:Leak |
| 3366 fun:_Znw* | 3382 fun:_Znw* |
| 3367 fun:_ZN3net11SpdySession16CreateStreamImplERK4GURLNS_15RequestPriorityEP13scop
ed_refptrINS_10SpdyStreamEERKNS_11BoundNetLogE | 3383 fun:_ZN3net11SpdySession16CreateStreamImplERK4GURLNS_15RequestPriorityEP13scop
ed_refptrINS_10SpdyStreamEERKNS_11BoundNetLogE |
| 3368 fun:_ZN3net11SpdySession12CreateStreamERK4GURLNS_15RequestPriorityEP13scoped_r
efptrINS_10SpdyStreamEERKNS_11BoundNetLogEP14CallbackRunnerI6Tuple1IiEEPKNS_14Sp
dyHttpStreamE | 3384 fun:_ZN3net11SpdySession12CreateStreamERK4GURLNS_15RequestPriorityEP13scoped_r
efptrINS_10SpdyStreamEERKNS_11BoundNetLogEP14CallbackRunnerI6Tuple1IiEEPKNS_14Sp
dyHttpStreamE |
| 3369 fun:_ZN3net14SpdyHttpStream16InitializeStreamEPNS_11SpdySessionERKNS_15HttpReq
uestInfoERKNS_11BoundNetLogEP14CallbackRunnerI6Tuple1IiEE | 3385 fun:_ZN3net14SpdyHttpStream16InitializeStreamEPNS_11SpdySessionERKNS_15HttpReq
uestInfoERKNS_11BoundNetLogEP14CallbackRunnerI6Tuple1IiEE |
| 3370 fun:*SpdyHttpStreamTest_SendRequest_Test8TestBodyEv | 3386 fun:*SpdyHttpStreamTest_SendRequest_Test8TestBodyEv |
| 3371 } | 3387 } |
| 3372 { | 3388 { |
| 3373 bug_19775_a | |
| 3374 Memcheck:Leak | |
| 3375 ... | |
| 3376 fun:malloc | |
| 3377 fun:sqlite3MemMalloc | |
| 3378 fun:mallocWithAlarm | |
| 3379 fun:sqlite3Malloc | |
| 3380 ... | |
| 3381 fun:sqlite3CreateIndex | |
| 3382 fun:yy_reduce | |
| 3383 fun:sqlite3Parser | |
| 3384 fun:sqlite3RunParser | |
| 3385 fun:sqlite3Prepare | |
| 3386 fun:sqlite3LockAndPrepare | |
| 3387 fun:sqlite3_prepare | |
| 3388 fun:sqlite3_exec | |
| 3389 fun:sqlite3InitCallback | |
| 3390 fun:sqlite3_exec | |
| 3391 fun:sqlite3VdbeExec | |
| 3392 fun:sqlite3Step | |
| 3393 fun:sqlite3_step | |
| 3394 fun:sqlite3_exec | |
| 3395 fun:_ZN3sql10Connection7ExecuteEPKc | |
| 3396 fun:_ZN7history11URLDatabase18CreateMainURLIndexEv | |
| 3397 } | |
| 3398 { | |
| 3399 bug_19775_b | |
| 3400 Memcheck:Leak | |
| 3401 ... | |
| 3402 fun:malloc | |
| 3403 fun:sqlite3MemMalloc | |
| 3404 fun:mallocWithAlarm | |
| 3405 fun:sqlite3Malloc | |
| 3406 fun:sqlite3_malloc | |
| 3407 fun:pcache1Create | |
| 3408 fun:sqlite3PcacheFetch | |
| 3409 fun:sqlite3PagerAcquire2 | |
| 3410 fun:sqlite3PagerAcquire | |
| 3411 fun:btreeGetPage | |
| 3412 fun:lockBtree | |
| 3413 fun:sqlite3BtreeBeginTrans | |
| 3414 fun:sqlite3InitOne | |
| 3415 fun:sqlite3Init | |
| 3416 fun:sqlite3ReadSchema | |
| 3417 fun:sqlite3Pragma | |
| 3418 fun:yy_reduce | |
| 3419 fun:sqlite3Parser | |
| 3420 fun:sqlite3RunParser | |
| 3421 fun:sqlite3Prepare | |
| 3422 fun:sqlite3LockAndPrepare | |
| 3423 } | |
| 3424 { | |
| 3425 bug_19775_c | |
| 3426 Memcheck:Leak | |
| 3427 ... | |
| 3428 fun:openDatabase | |
| 3429 fun:sqlite3_open | |
| 3430 fun:_ZN3sql10Connection12OpenInternalERKSs | |
| 3431 fun:_ZN3sql10Connection12OpenInMemoryEv | |
| 3432 fun:_ZN7history16InMemoryDatabase6InitDBEv | |
| 3433 fun:_ZN7history16InMemoryDatabase12InitFromDiskERK8FilePath | |
| 3434 } | |
| 3435 { | |
| 3436 bug_19775_e | |
| 3437 Memcheck:Leak | |
| 3438 ... | |
| 3439 fun:malloc | |
| 3440 fun:sqlite3MemMalloc | |
| 3441 fun:mallocWithAlarm | |
| 3442 fun:sqlite3Malloc | |
| 3443 fun:sqlite3DbMallocRaw | |
| 3444 fun:sqlite3DbMallocZero | |
| 3445 fun:sqlite3StartTable | |
| 3446 fun:yy_reduce | |
| 3447 fun:sqlite3Parser | |
| 3448 fun:sqlite3RunParser | |
| 3449 fun:sqlite3Prepare | |
| 3450 fun:sqlite3LockAndPrepare | |
| 3451 fun:sqlite3_prepare | |
| 3452 fun:sqlite3_exec | |
| 3453 fun:sqlite3InitCallback | |
| 3454 fun:sqlite3_exec | |
| 3455 fun:sqlite3InitOne | |
| 3456 fun:sqlite3Init | |
| 3457 fun:sqlite3ReadSchema | |
| 3458 fun:sqlite3CreateIndex | |
| 3459 fun:yy_reduce | |
| 3460 } | |
| 3461 { | |
| 3462 bug_47331_part_1 | 3389 bug_47331_part_1 |
| 3463 Memcheck:Leak | 3390 Memcheck:Leak |
| 3464 fun:malloc | 3391 fun:malloc |
| 3465 fun:malloc | 3392 fun:malloc |
| 3466 fun:sqlite3MemMalloc | 3393 fun:sqlite3MemMalloc |
| 3467 fun:mallocWithAlarm | 3394 fun:mallocWithAlarm |
| 3468 fun:sqlite3Malloc | 3395 fun:sqlite3Malloc |
| 3469 fun:sqlite3DbMallocRaw | 3396 fun:sqlite3DbMallocRaw |
| 3470 fun:sqlite3DbMallocZero | 3397 fun:sqlite3DbMallocZero |
| 3471 fun:sqlite3StartTable | 3398 fun:sqlite3StartTable |
| 3472 } | 3399 } |
| 3473 | |
| 3474 { | 3400 { |
| 3475 bug_47331_part_2 | 3401 bug_47331_part_2 |
| 3476 Memcheck:Leak | 3402 Memcheck:Leak |
| 3477 fun:malloc | 3403 fun:malloc |
| 3478 fun:malloc | 3404 fun:malloc |
| 3479 fun:sqlite3MemMalloc | 3405 fun:sqlite3MemMalloc |
| 3480 fun:mallocWithAlarm | 3406 fun:mallocWithAlarm |
| 3481 fun:sqlite3Malloc | 3407 fun:sqlite3Malloc |
| 3482 fun:sqlite3HashInsert | 3408 fun:sqlite3HashInsert |
| 3483 fun:sqlite3EndTable | 3409 fun:sqlite3EndTable |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3516 ... | 3442 ... |
| 3517 fun:*AddInputMethodToMapsERKSsRKN8chromeos21InputMethodDescriptorE | 3443 fun:*AddInputMethodToMapsERKSsRKN8chromeos21InputMethodDescriptorE |
| 3518 ... | 3444 ... |
| 3519 fun:_ZN8chromeos12input_method33GetInputMethodIdsFromLanguageCodeERKSsNS0_15I
nputMethodTypeEPSt6vectorISsSaISsEE | 3445 fun:_ZN8chromeos12input_method33GetInputMethodIdsFromLanguageCodeERKSsNS0_15I
nputMethodTypeEPSt6vectorISsSaISsEE |
| 3520 fun:_ZN8chromeos11Preferences4InitEP11PrefService | 3446 fun:_ZN8chromeos11Preferences4InitEP11PrefService |
| 3521 fun:_ZN11ProfileImplC1ERK8FilePath | 3447 fun:_ZN11ProfileImplC1ERK8FilePath |
| 3522 fun:_ZN7Profile13CreateProfileERK8FilePath | 3448 fun:_ZN7Profile13CreateProfileERK8FilePath |
| 3523 fun:_ZN14ProfileManager13CreateProfileERK8FilePath | 3449 fun:_ZN14ProfileManager13CreateProfileERK8FilePath |
| 3524 } | 3450 } |
| 3525 { | 3451 { |
| 3526 bug_46678_v_a | |
| 3527 Memcheck:Leak | |
| 3528 fun:_Znw* | |
| 3529 fun:_Z11NewCallbackIN8remoting14SessionManagerEPKNS0_24UpdateStreamPacketHead
erERK13scoped_refptrIN5media10DataBufferEEiEPN9Callback3IT0_T1_T2_E4TypeEPT_MSI_
FvSC_SD_SE_E | |
| 3530 fun:_ZN8remoting14SessionManager8DoEncodeE13scoped_refptrINS_8Capturer11Captu
reDataEE | |
| 3531 fun:_Z16DispatchToMethodIN8remoting14SessionManagerEMS1_Fv13scoped_refptrINS0
_8Capturer11CaptureDataEEES5_EvPT_T0_RK6Tuple1IT1_E | |
| 3532 fun:_ZN14RunnableMethodIN8remoting14SessionManagerEMS1_Fv13scoped_refptrINS0_
8Capturer11CaptureDataEEE6Tuple1IS5_EE3RunEv | |
| 3533 } | |
| 3534 { | |
| 3535 bug_46678_v_b | |
| 3536 Memcheck:Leak | |
| 3537 fun:_Znw* | |
| 3538 fun:_Z11NewCallbackIN8remoting14SessionManagerEPNS0_11HostMessageEiEPN9Callba
ck2IT0_T1_E4TypeEPT_MSA_FvS5_S6_E | |
| 3539 fun:_ZN8remoting14SessionManager8DoEncodeE13scoped_refptrINS_8Capturer11Captu
reDataEE | |
| 3540 fun:_Z16DispatchToMethodIN8remoting14SessionManagerEMS1_Fv13scoped_refptrINS0
_8Capturer11CaptureDataEEES5_EvPT_T0_RK6Tuple1IT1_E | |
| 3541 fun:_ZN14RunnableMethodIN8remoting14SessionManagerEMS1_Fv13scoped_refptrINS0_
8Capturer11CaptureDataEEE6Tuple1IS5_EE3RunEv | |
| 3542 } | |
| 3543 { | |
| 3544 bug_48553 | 3452 bug_48553 |
| 3545 Memcheck:Leak | 3453 Memcheck:Leak |
| 3546 fun:malloc | 3454 fun:malloc |
| 3547 fun:malloc | 3455 fun:malloc |
| 3548 fun:pa_xmalloc | 3456 fun:pa_xmalloc |
| 3549 obj:/usr/lib/libpulse.so.0.4.1 | 3457 obj:/usr/lib/libpulse.so.0.4.1 |
| 3550 ... | 3458 ... |
| 3551 fun:_ZN8chromeos15PulseAudioMixer14PulseAudioInitEv | 3459 fun:_ZN8chromeos15PulseAudioMixer14PulseAudioInitEv |
| 3552 fun:_ZN8chromeos15PulseAudioMixer6DoInitEP14CallbackRunnerI6Tuple1IbEE | 3460 fun:_ZN8chromeos15PulseAudioMixer6DoInitEP14CallbackRunnerI6Tuple1IbEE |
| 3553 fun:_Z16DispatchToMethodIN8chromeos15PulseAudioMixerEMS1_FvP14CallbackRunnerI
6Tuple1IbEEES6_EvPT_T0_RKS3_IT1_E | 3461 fun:_Z16DispatchToMethodIN8chromeos15PulseAudioMixerEMS1_FvP14CallbackRunnerI
6Tuple1IbEEES6_EvPT_T0_RKS3_IT1_E |
| 3554 fun:_ZN14RunnableMethodIN8chromeos15PulseAudioMixerEMS1_FvP14CallbackRunnerI6
Tuple1IbEEES3_IS6_EE3RunEv | 3462 fun:_ZN14RunnableMethodIN8chromeos15PulseAudioMixerEMS1_FvP14CallbackRunnerI6
Tuple1IbEEES3_IS6_EE3RunEv |
| 3555 fun:_ZN11MessageLoop7RunTaskEP4Task | 3463 fun:_ZN11MessageLoop7RunTaskEP4Task |
| 3556 fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE | 3464 fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE |
| 3557 fun:_ZN11MessageLoop6DoWorkEv | 3465 fun:_ZN11MessageLoop6DoWorkEv |
| 3558 fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE | 3466 fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE |
| 3559 fun:_ZN11MessageLoop11RunInternalEv | 3467 fun:_ZN11MessageLoop11RunInternalEv |
| 3560 fun:_ZN11MessageLoop10RunHandlerEv | 3468 fun:_ZN11MessageLoop10RunHandlerEv |
| 3561 } | 3469 } |
| 3562 | |
| 3563 { | 3470 { |
| 3564 bug_48557_1 | 3471 bug_48557_1 |
| 3565 Memcheck:Leak | 3472 Memcheck:Leak |
| 3566 fun:_Znw* | 3473 fun:_Znw* |
| 3567 fun:_ZN4base10SyncSocket10CreatePairEPPS0_ | 3474 fun:_ZN4base10SyncSocket10CreatePairEPPS0_ |
| 3568 fun:_ZN15AudioSyncReader4InitEv | 3475 fun:_ZN15AudioSyncReader4InitEv |
| 3569 fun:_ZN17AudioRendererHost14OnCreateStreamERKN3IPC7MessageEiRK37ViewHostMsg_A
udio_CreateStream_Paramsb | 3476 fun:_ZN17AudioRendererHost14OnCreateStreamERKN3IPC7MessageEiRK37ViewHostMsg_A
udio_CreateStream_Paramsb |
| 3570 fun:_ZN21AudioRendererHostTest16CreateLowLatencyEv | 3477 fun:_ZN21AudioRendererHostTest16CreateLowLatencyEv |
| 3571 fun:_ZN54AudioRendererHostTest_CreateLowLatencyAndShutdown_Test8TestBodyEv | 3478 fun:_ZN54AudioRendererHostTest_CreateLowLatencyAndShutdown_Test8TestBodyEv |
| 3572 } | 3479 } |
| 3573 | |
| 3574 { | 3480 { |
| 3575 bug_48557_2 | 3481 bug_48557_2 |
| 3576 Memcheck:Leak | 3482 Memcheck:Leak |
| 3577 fun:_Znw* | 3483 fun:_Znw* |
| 3578 fun:_ZN4base10SyncSocket10CreatePairEPPS0_ | 3484 fun:_ZN4base10SyncSocket10CreatePairEPPS0_ |
| 3579 fun:_ZN15AudioSyncReader4InitEv | 3485 fun:_ZN15AudioSyncReader4InitEv |
| 3580 fun:_ZN17AudioRendererHost14OnCreateStreamERKN3IPC7MessageEiRK37ViewHostMsg_A
udio_CreateStream_Paramsb | 3486 fun:_ZN17AudioRendererHost14OnCreateStreamERKN3IPC7MessageEiRK37ViewHostMsg_A
udio_CreateStream_Paramsb |
| 3581 fun:_ZN21AudioRendererHostTest16CreateLowLatencyEv | 3487 fun:_ZN21AudioRendererHostTest16CreateLowLatencyEv |
| 3582 fun:_ZN51AudioRendererHostTest_CreateLowLatencyAndClose_Test8TestBodyEv | 3488 fun:_ZN51AudioRendererHostTest_CreateLowLatencyAndClose_Test8TestBodyEv |
| 3583 } | 3489 } |
| 3584 | |
| 3585 { | 3490 { |
| 3586 bug_48865 | 3491 bug_48865 |
| 3587 Memcheck:Leak | 3492 Memcheck:Leak |
| 3588 fun:_Znw* | 3493 fun:_Znw* |
| 3589 fun:_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN3net25RuleBasedHostResolverP
roc4RuleEEE8allocateEjPKv | 3494 fun:_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIN3net25RuleBasedHostResolverP
roc4RuleEEE8allocateEjPKv |
| 3590 fun:_ZNSt10_List_baseIN3net25RuleBasedHostResolverProc4RuleESaIS2_EE11_M_get_
nodeEv | 3495 fun:_ZNSt10_List_baseIN3net25RuleBasedHostResolverProc4RuleESaIS2_EE11_M_get_
nodeEv |
| 3591 fun:_ZNSt4listIN3net25RuleBasedHostResolverProc4RuleESaIS2_EE14_M_create_node
ERKS2_ | 3496 fun:_ZNSt4listIN3net25RuleBasedHostResolverProc4RuleESaIS2_EE14_M_create_node
ERKS2_ |
| 3592 fun:_ZNSt4listIN3net25RuleBasedHostResolverProc4RuleESaIS2_EE9_M_insertESt14_
List_iteratorIS2_ERKS2_ | 3497 fun:_ZNSt4listIN3net25RuleBasedHostResolverProc4RuleESaIS2_EE9_M_insertESt14_
List_iteratorIS2_ERKS2_ |
| 3593 fun:_ZNSt4listIN3net25RuleBasedHostResolverProc4RuleESaIS2_EE9push_backERKS2_ | 3498 fun:_ZNSt4listIN3net25RuleBasedHostResolverProc4RuleESaIS2_EE9push_backERKS2_ |
| 3594 fun:_ZN3net25RuleBasedHostResolverProc23AddRuleForAddressFamilyERKSsNS_13Addr
essFamilyES2_ | 3499 fun:_ZN3net25RuleBasedHostResolverProc23AddRuleForAddressFamilyERKSsNS_13Addr
essFamilyES2_ |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3699 Memcheck:Value4 | 3604 Memcheck:Value4 |
| 3700 fun:modp_b64_encode | 3605 fun:modp_b64_encode |
| 3701 fun:_ZN4base12Base64EncodeERKSsPSs | 3606 fun:_ZN4base12Base64EncodeERKSsPSs |
| 3702 fun:_ZN3net14HttpAuthGSSAPI17GenerateAuthTokenEPKSbIwSt11char_traitsIwESaIwEE
S6_RS5_PSs | 3607 fun:_ZN3net14HttpAuthGSSAPI17GenerateAuthTokenEPKSbIwSt11char_traitsIwESaIwEE
S6_RS5_PSs |
| 3703 ... | 3608 ... |
| 3704 fun:_ZN3net24HttpAuthHandlerNegotiate6DoLoopEi | 3609 fun:_ZN3net24HttpAuthHandlerNegotiate6DoLoopEi |
| 3705 fun:_ZN3net24HttpAuthHandlerNegotiate21GenerateAuthTokenImplEPKSbIwSt11char_t
raitsIwESaIwEES6_PKNS_15HttpRequestInfoEP14CallbackRunnerI6Tuple1IiEEPSs | 3610 fun:_ZN3net24HttpAuthHandlerNegotiate21GenerateAuthTokenImplEPKSbIwSt11char_t
raitsIwESaIwEES6_PKNS_15HttpRequestInfoEP14CallbackRunnerI6Tuple1IiEEPSs |
| 3706 fun:_ZN3net15HttpAuthHandler17GenerateAuthTokenEPKSbIwSt11char_traitsIwESaIwE
ES6_PKNS_15HttpRequestInfoEP14CallbackRunnerI6Tuple1IiEEPSs | 3611 fun:_ZN3net15HttpAuthHandler17GenerateAuthTokenEPKSbIwSt11char_traitsIwESaIwE
ES6_PKNS_15HttpRequestInfoEP14CallbackRunnerI6Tuple1IiEEPSs |
| 3707 fun:_ZN3net46HttpAuthHandlerNegotiateTest_DisableCname_Test8TestBodyEv | 3612 fun:_ZN3net46HttpAuthHandlerNegotiateTest_DisableCname_Test8TestBodyEv |
| 3708 } | 3613 } |
| OLD | NEW |