Lines Matching refs:response
135 const response = receiveMessageOnPort(syncCommPort);
137 if (response !== undefined) {
138 PromisePrototypeThen(handleMessage(response.message), undefined, errorHandler);
194 let response;
196 response = await ReflectApply(hooks[method], hooks, args);
199 response = exception;
204 // Send the method response (or exception) to the main thread.
207 wrapMessage(hasError ? 'error' : 'success', response),
208 transferArrayBuffer(hasError, response?.source),
211 // Or send the exception thrown when trying to send the response.