Home | History | Annotate | Download | only in debugger

Lines Matching refs:destination

51 // Put the target message port ID in the devtools destination field.
63 // The message port ID is in the devtools destination field.
71 // similar: with the message port ID in the destination field, but no
142 const std::string destinationString = message.destination();
170 SendResponse(response, message.tool(), message.destination());
174 int destination = -1;
176 base::StringToInt(destinationString, &destination);
179 if (destination != -1) // destination should be empty for this command.
184 if (destination == -1) // Destination required for this command.
187 DisconnectCommand(destination, &response);
189 if (destination == -1) // Destination required for this command.
192 PostMessageCommand(destination, content, &response);
198 SendResponse(response, message.tool(), message.destination());
214 const std::string& destination) {
219 tool, destination, response_content));