| OLD | NEW |
| 1 // Copyright (c) 2010 Google Inc. | 1 // Copyright (c) 2010 Google Inc. |
| 2 // All rights reserved. | 2 // All rights reserved. |
| 3 // | 3 // |
| 4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
| 5 // modification, are permitted provided that the following conditions are | 5 // modification, are permitted provided that the following conditions are |
| 6 // met: | 6 // met: |
| 7 // | 7 // |
| 8 // * Redistributions of source code must retain the above copyright | 8 // * Redistributions of source code must retain the above copyright |
| 9 // notice, this list of conditions and the following disclaimer. | 9 // notice, this list of conditions and the following disclaimer. |
| 10 // * Redistributions in binary form must reproduce the above | 10 // * Redistributions in binary form must reproduce the above |
| (...skipping 4549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4560 case MD_UNLOADED_MODULE_LIST_STREAM: | 4560 case MD_UNLOADED_MODULE_LIST_STREAM: |
| 4561 return "MD_UNLOADED_MODULE_LIST_STREAM"; | 4561 return "MD_UNLOADED_MODULE_LIST_STREAM"; |
| 4562 case MD_MISC_INFO_STREAM: | 4562 case MD_MISC_INFO_STREAM: |
| 4563 return "MD_MISC_INFO_STREAM"; | 4563 return "MD_MISC_INFO_STREAM"; |
| 4564 case MD_MEMORY_INFO_LIST_STREAM: | 4564 case MD_MEMORY_INFO_LIST_STREAM: |
| 4565 return "MD_MEMORY_INFO_LIST_STREAM"; | 4565 return "MD_MEMORY_INFO_LIST_STREAM"; |
| 4566 case MD_THREAD_INFO_LIST_STREAM: | 4566 case MD_THREAD_INFO_LIST_STREAM: |
| 4567 return "MD_THREAD_INFO_LIST_STREAM"; | 4567 return "MD_THREAD_INFO_LIST_STREAM"; |
| 4568 case MD_HANDLE_OPERATION_LIST_STREAM: | 4568 case MD_HANDLE_OPERATION_LIST_STREAM: |
| 4569 return "MD_HANDLE_OPERATION_LIST_STREAM"; | 4569 return "MD_HANDLE_OPERATION_LIST_STREAM"; |
| 4570 case MD_TOKEN_STREAM: |
| 4571 return "MD_TOKEN_STREAM"; |
| 4572 case MD_JAVASCRIPT_DATA_STREAM: |
| 4573 return "MD_JAVASCRIPT_DATA_STREAM"; |
| 4574 case MD_SYSTEM_MEMORY_INFO_STREAM: |
| 4575 return "MD_SYSTEM_MEMORY_INFO_STREAM"; |
| 4576 case MD_PROCESS_VM_COUNTERS_STREAM: |
| 4577 return "MD_PROCESS_VM_COUNTERS_STREAM"; |
| 4570 case MD_LAST_RESERVED_STREAM: | 4578 case MD_LAST_RESERVED_STREAM: |
| 4571 return "MD_LAST_RESERVED_STREAM"; | 4579 return "MD_LAST_RESERVED_STREAM"; |
| 4572 case MD_BREAKPAD_INFO_STREAM: | 4580 case MD_BREAKPAD_INFO_STREAM: |
| 4573 return "MD_BREAKPAD_INFO_STREAM"; | 4581 return "MD_BREAKPAD_INFO_STREAM"; |
| 4574 case MD_ASSERTION_INFO_STREAM: | 4582 case MD_ASSERTION_INFO_STREAM: |
| 4575 return "MD_ASSERTION_INFO_STREAM"; | 4583 return "MD_ASSERTION_INFO_STREAM"; |
| 4576 case MD_LINUX_CPU_INFO: | 4584 case MD_LINUX_CPU_INFO: |
| 4577 return "MD_LINUX_CPU_INFO"; | 4585 return "MD_LINUX_CPU_INFO"; |
| 4578 case MD_LINUX_PROC_STATUS: | 4586 case MD_LINUX_PROC_STATUS: |
| 4579 return "MD_LINUX_PROC_STATUS"; | 4587 return "MD_LINUX_PROC_STATUS"; |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4857 return NULL; | 4865 return NULL; |
| 4858 } | 4866 } |
| 4859 | 4867 |
| 4860 *stream = new_stream.release(); | 4868 *stream = new_stream.release(); |
| 4861 info->stream = *stream; | 4869 info->stream = *stream; |
| 4862 return *stream; | 4870 return *stream; |
| 4863 } | 4871 } |
| 4864 | 4872 |
| 4865 | 4873 |
| 4866 } // namespace google_breakpad | 4874 } // namespace google_breakpad |
| OLD | NEW |