HomeSort by relevance Sort by last modified time
    Searched refs:Resp (Results 1 - 23 of 23) sorted by null

  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel3CommandsLib/
Pause.c 40 SHELL_PROMPT_RESPONSE *Resp;
44 Resp = NULL;
83 Status = ShellPromptForResponseHii(ShellPromptResponseTypeQuitContinue, STRING_TOKEN (STR_PAUSE_PROMPT), gShellLevel3HiiHandle, (VOID**)&Resp);
85 Status = ShellPromptForResponse(ShellPromptResponseTypeQuitContinue, NULL, (VOID**)&Resp);
88 if (EFI_ERROR(Status) || Resp == NULL || *Resp == ShellPromptResponseQuit) {
93 if (Resp != NULL) {
94 FreePool(Resp);
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDriver1CommandsLib/
Unload.c 68 SHELL_PROMPT_RESPONSE *Resp;
73 Resp = NULL;
123 Status = ShellPromptForResponse(ShellPromptResponseTypeYesNo, NULL, (VOID**)&Resp);
125 if (ShellCommandLineGetFlag(Package, L"-n") || (Resp != NULL && *Resp == ShellPromptResponseYes)) {
129 SHELL_FREE_NON_NULL(Resp);
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
Rm.c 77 SHELL_PROMPT_RESPONSE *Resp;
81 Resp = NULL;
95 Status = ShellPromptForResponse(ShellPromptResponseTypeYesNo, NULL, (VOID**)&Resp);
96 ASSERT(Resp != NULL);
97 if (EFI_ERROR(Status) || *Resp != ShellPromptResponseYes) {
98 SHELL_FREE_NON_NULL(Resp);
101 SHELL_FREE_NON_NULL(Resp);
Cp.c 29 @param[in] Resp The response to the overwrite query (if always).
43 IN VOID **Resp
49 If the destination exists the user will be prompted and the result put into *resp
53 @param[out] Resp pointer to response from question. Pass back on looped calling
63 OUT VOID **Resp,
84 ASSERT(Resp != NULL);
88 Response = *Resp;
117 *Resp = Response;
123 *Resp = Response;
151 ShellStatus = ValidateAndCopyFiles(List, TempName, SilentMode, TRUE, Resp);
    [all...]
Mv.c 350 @param[out] Resp A pointer to response from question. Pass back on looped calling
358 OUT VOID **Resp
366 ShellStatus = CopySingleFile (Node->FullName, DestPath, Resp, TRUE, L"mv");
434 @param[out] Resp A pointer to response from question. Pass back on looped calling.
443 OUT VOID **Resp
510 @param[out] Resp pointer to response from question. Pass back on looped calling
522 OUT VOID **Resp,
545 Response = *Resp;
652 *Resp = Response;
659 *Resp = Response;
    [all...]
UefiShellLevel2CommandsLib.h 331 If the destination exists the user will be prompted and the result put into *resp
335 @param[out] Resp pointer to response from question. Pass back on looped calling
345 OUT VOID **Resp,
  /system/chre/ash/platform/slpi/smgr/
ash.cc 153 } else if (calResponse->Resp.sns_result_t != SNS_RESULT_SUCCESS_V01) {
155 calResponse->Resp.sns_err_t);
  /external/tensorflow/tensorflow/core/distributed_runtime/
worker_interface.h 175 template <typename Method, typename Req, typename Resp>
176 Status CallAndWait(Method func, const Req* req, Resp* resp) {
179 (this->*func)(req, resp, [&ret, &n](const Status& s) {
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLib/
UefiShellLib.c     [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Application/Shell/
ConsoleLogger.c 638 SHELL_PROMPT_RESPONSE *Resp;
641 Resp = NULL;
644 Status = ShellPromptForResponseHii(ShellPromptResponseTypeQuitContinue, STRING_TOKEN(STR_SHELL_QUIT_CONT), ShellInfoObject.HiiHandle, (VOID**)&Resp);
646 ASSERT(Resp != NULL);
647 if (Resp == NULL) {
651 if (Resp != NULL) {
652 FreePool(Resp);
656 if (*Resp == ShellPromptResponseContinue) {
657 FreePool(Resp);
663 } else if (*Resp == ShellPromptResponseQuit) {
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/
VoicemailTranscriptionServiceGrpc.java 401 private static class MethodHandlers<Req, Resp> implements
402 io.grpc.stub.ServerCalls.UnaryMethod<Req, Resp>,
403 io.grpc.stub.ServerCalls.ServerStreamingMethod<Req, Resp>,
404 io.grpc.stub.ServerCalls.ClientStreamingMethod<Req, Resp>,
405 io.grpc.stub.ServerCalls.BidiStreamingMethod<Req, Resp> {
416 public void invoke(Req request, io.grpc.stub.StreamObserver<Resp> responseObserver) {
442 io.grpc.stub.StreamObserver<Resp> responseObserver) {
  /prebuilts/go/darwin-x86/src/net/http/
responsewrite_test.go 15 Resp Response
280 err := tt.Resp.Write(&braw)
response_test.go 26 Resp Response
564 resp, err := ReadResponse(bufio.NewReader(strings.NewReader(tt.Raw)), tt.Resp.Request)
569 rbody := resp.Body
570 resp.Body = nil
571 diff(t, fmt.Sprintf("#%d Response", i), resp, &tt.Resp)
590 resp, err := ReadResponse(bufio.NewReader(strings.NewReader(tt.Raw)), tt.Resp.Request)
595 err = resp.Write(ioutil.Discard
    [all...]
  /prebuilts/go/linux-x86/src/net/http/
responsewrite_test.go 15 Resp Response
280 err := tt.Resp.Write(&braw)
response_test.go 26 Resp Response
564 resp, err := ReadResponse(bufio.NewReader(strings.NewReader(tt.Raw)), tt.Resp.Request)
569 rbody := resp.Body
570 resp.Body = nil
571 diff(t, fmt.Sprintf("#%d Response", i), resp, &tt.Resp)
590 resp, err := ReadResponse(bufio.NewReader(strings.NewReader(tt.Raw)), tt.Resp.Request)
595 err = resp.Write(ioutil.Discard
    [all...]
  /system/chre/platform/slpi/smgr/
platform_sensor.cc 767 } else if (infoResponse->resp.sns_result_t != SNS_RESULT_SUCCESS_V01) {
769 infoResponse->resp.sns_err_t, infoRequest->sensor_id);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ufs/UfsBlockIoPei/
UfsHci.h 786 UINT8 Resp; /* Response */
1072 UINT8 Resp; /* Response - 0x00 */
    [all...]
UfsHci.c     [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ufs/UfsPassThruDxe/
UfsPassThruHci.h 786 UINT8 Resp; /* Response */
1072 UINT8 Resp; /* Response - 0x00 */
    [all...]
UfsPassThruHci.c     [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
GenMake.py 529 for Resp in RespDict.keys():
530 RespFile = os.path.join(self._AutoGenObject.OutputDir, str(Resp).lower() + '.txt')
531 StrList = RespDict[Resp].split(' ')
542 ToolsDef.append("%s = %s" % (Resp, UnexpandMacroStr + ' @' + RespFile))
755 RespMacro = FlagDict[Flag]['Macro'].replace('FLAGS', 'RESP')
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/
Sal.h 597 UINT64 Resp;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/Ipf/
SalApi.h 435 UINT64 Resp;

Completed in 521 milliseconds