HomeSort by relevance Sort by last modified time
    Searched full:sendresponse (Results 1 - 25 of 112) sorted by null

1 2 3 4 5

  /external/chromium/chrome/common/extensions/docs/examples/api/messaging/timer/
page.js 8 function(request, sender, sendResponse) {
9 sendResponse({counter: request.counter+1});
  /external/nist-sip/java/javax/sip/
ServerTransaction.java 6 void sendResponse(Response response)
SipProvider.java 49 void sendResponse(Response response) throws SipException;
  /external/chromium/chrome/common/extensions/docs/examples/api/infobars/sandwichbar/
background.html 15 function onRequest(request, sender, sendResponse) {
27 sendResponse({});
  /external/chromium/chrome/common/extensions/docs/examples/api/pageAction/pageaction_by_content/
background.html 12 function onRequest(request, sender, sendResponse) {
18 sendResponse({});
  /external/chromium/chrome/browser/extensions/
extension_function.cc 60 SendResponse(false);
63 void AsyncExtensionFunction::SendResponse(bool success) {
69 dispatcher()->SendResponse(this, success);
85 SendResponse(RunImpl());
execute_code_in_tab_function.cc 140 SendResponse(false);
154 SendResponse(false);
160 SendResponse(false);
216 SendResponse(success);
extension_debugger_api.cc 304 SendResponse(true);
320 SendResponse(true);
351 SendResponse(false);
360 SendResponse(true);
  /packages/apps/Stk/src/com/android/stk/
StkDialogActivity.java 46 sendResponse(StkAppService.RES_ID_TIMEOUT);
105 sendResponse(StkAppService.RES_ID_CONFIRM, true);
109 sendResponse(StkAppService.RES_ID_CONFIRM, false);
119 sendResponse(StkAppService.RES_ID_BACKWARD);
153 private void sendResponse(int resId, boolean confirmed) {
161 private void sendResponse(int resId) {
162 sendResponse(resId, true);
StkInputActivity.java 78 sendResponse(StkAppService.RES_ID_TIMEOUT);
106 sendResponse(StkAppService.RES_ID_INPUT, input, false);
176 sendResponse(StkAppService.RES_ID_BACKWARD, null, false);
183 private void sendResponse(int resId) {
184 sendResponse(resId, null, false);
187 private void sendResponse(int resId, String input, boolean help) {
222 sendResponse(StkAppService.RES_ID_END_SESSION);
226 sendResponse(StkAppService.RES_ID_INPUT, "", true);
StkMenuActivity.java 69 sendResponse(StkAppService.RES_ID_TIMEOUT);
115 sendResponse(StkAppService.RES_ID_MENU_SELECTION, item.id, false);
134 sendResponse(StkAppService.RES_ID_BACKWARD);
220 sendResponse(StkAppService.RES_ID_END_SESSION);
231 sendResponse(StkAppService.RES_ID_MENU_SELECTION, stkItem.id, true);
320 private void sendResponse(int resId) {
321 sendResponse(resId, 0, false);
324 private void sendResponse(int resId, int itemId, boolean help) {
ToneDialog.java 51 sendResponse(StkAppService.RES_ID_DONE);
116 sendResponse(StkAppService.RES_ID_END_SESSION);
131 private void sendResponse(int resId) {
  /external/chromium/chrome/common/extensions/docs/examples/api/tabs/pin/
background.html 11 function(request, sender, sendResponse) {
  /external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/
proxy_error_handler.js 53 * @param {!function} sendResponse Function to call to send a response.
56 handleOnRequest_: function(request, sender, sendResponse) {
58 sendResponse({result: this.getErrorDetails()});
61 sendResponse({result: true});
  /external/chromium/chrome/common/extensions/docs/examples/extensions/mappy/
mappy_content_script.js 3 chrome.extension.onRequest.addListener(function(req, sender, sendResponse) {
4 sendResponse(findAddress());
  /external/chromium/chrome/browser/ui/webui/
favicon_source.cc 49 SendResponse(request_id, NULL);
75 SendResponse(request_id, favicon.image_data);
88 SendResponse(request_id, default_favicon_);
fileicon_source.cc 50 SendResponse(request_id, icon_data);
77 SendResponse(request_id, icon_data);
80 SendResponse(request_id, NULL);
theme_source.cc 55 SendResponse(request_id, css_bytes_);
65 SendResponse(request_id, NULL);
114 SendResponse(request_id, image_data);
118 SendResponse(request_id, rb.LoadDataResourceBytes(resource_id));
thumbnail_source.cc 30 SendResponse(request_id, data.get());
55 SendResponse(request_id, default_thumbnail_);
theme_source_unittest.cc 14 // A mock ThemeSource (so we can override SendResponse to get at its data).
23 virtual void SendResponse(int request_id, RefCountedMemory* data) {
bookmarks_ui.cc 34 SendResponse(request_id, NULL);
keyboard_ui.cc 41 SendResponse(request_id, NULL);
sync_internals_html_source.cc 43 SendResponse(request_id, bytes);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/calendar/javascript/
options.js 53 * @param {Function} sendResponse Function to call when there is a response.
57 chrome.extension.onRequest.addListener(function(request, sender, sendResponse) {
70 sendResponse();
  /external/chromium/chrome/common/extensions/docs/static/
messaging.html 67 sendResponse, so it is good practice to call sendResponse with an empty
71 function(request, sender, sendResponse) {
76 sendResponse({farewell: "goodbye"});
78 sendResponse({}); // snub them.
84 first to call sendResponse() for a particular event will succeed in sending the
186 function(request, sender, sendResponse) {
188 sendResponse({}); // don't allow this extension access
190 sendResponse({targetData: targetData});
193 sendResponse({activateLasers: success})
    [all...]

Completed in 531 milliseconds

1 2 3 4 5