| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef BIN_DBG_CONNECTION_H_ | 5 #ifndef BIN_DBG_CONNECTION_H_ |
| 6 #define BIN_DBG_CONNECTION_H_ | 6 #define BIN_DBG_CONNECTION_H_ |
| 7 | 7 |
| 8 #include "bin/builtin.h" | 8 #include "bin/builtin.h" |
| 9 #include "bin/utils.h" | 9 #include "bin/utils.h" |
| 10 | 10 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 intptr_t debug_fd() const { return debug_fd_; } | 44 intptr_t debug_fd() const { return debug_fd_; } |
| 45 | 45 |
| 46 // Return message id of current debug command message. | 46 // Return message id of current debug command message. |
| 47 int MessageId(); | 47 int MessageId(); |
| 48 | 48 |
| 49 // Starts the native thread which listens for connections from | 49 // Starts the native thread which listens for connections from |
| 50 // debugger clients, reads and dispatches debug command messages | 50 // debugger clients, reads and dispatches debug command messages |
| 51 // from the client. | 51 // from the client. |
| 52 static int StartHandler(const char* address, int port_number); | 52 static int StartHandler(const char* address, int port_number); |
| 53 | 53 |
| 54 // Stops the native thread. |
| 55 static void StopHandler(); |
| 56 |
| 54 // Initializes the parts of the debugger which are needed by the vm | 57 // Initializes the parts of the debugger which are needed by the vm |
| 55 // service. This function should only be called when StartHandler | 58 // service. This function should only be called when StartHandler |
| 56 // is not called. | 59 // is not called. |
| 57 static void InitForVmService(); | 60 static void InitForVmService(); |
| 58 | 61 |
| 59 // Called by Isolates when they need to wait for a connection | 62 // Called by Isolates when they need to wait for a connection |
| 60 // from debugger clients. | 63 // from debugger clients. |
| 61 static void WaitForConnection(); | 64 static void WaitForConnection(); |
| 62 | 65 |
| 63 // Sends a reply or an error message to a specific debugger client. | 66 // Sends a reply or an error message to a specific debugger client. |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 | 118 |
| 116 friend class DebuggerConnectionImpl; | 119 friend class DebuggerConnectionImpl; |
| 117 | 120 |
| 118 DISALLOW_IMPLICIT_CONSTRUCTORS(DebuggerConnectionHandler); | 121 DISALLOW_IMPLICIT_CONSTRUCTORS(DebuggerConnectionHandler); |
| 119 }; | 122 }; |
| 120 | 123 |
| 121 } // namespace bin | 124 } // namespace bin |
| 122 } // namespace dart | 125 } // namespace dart |
| 123 | 126 |
| 124 #endif // BIN_DBG_CONNECTION_H_ | 127 #endif // BIN_DBG_CONNECTION_H_ |
| OLD | NEW |