HomeSort by relevance Sort by last modified time
    Searched refs:Status (Results 151 - 175 of 5758) sorted by null

1 2 3 4 5 67 8 91011>>

  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/Acpi/AcpiSupportDxe/
AcpiSupport.c 47 EFI_STATUS Status;
60 Status = AcpiSupportAcpiSupportConstructor (PrivateData);
61 if (EFI_ERROR (Status)) {
71 Status = gBS->InstallMultipleProtocolInterfaces (
79 ASSERT_EFI_ERROR (Status);
81 Status = gBS->InstallMultipleProtocolInterfaces (
87 ASSERT_EFI_ERROR (Status);
90 return Status;
  /device/linaro/bootloader/edk2/Nt32Pkg/BootModePei/
BootModePei.c 74 Status - EFI_SUCCESS if the boot mode could be set
78 EFI_STATUS Status;
89 Status = (**PeiServices).SetBootMode (PeiServices, (UINT8) BootMode);
90 ASSERT_EFI_ERROR (Status);
92 Status = (**PeiServices).InstallPpi (PeiServices, &mPpiListBootMode);
93 ASSERT_EFI_ERROR (Status);
96 Status = (**PeiServices).InstallPpi (PeiServices, &mPpiListRecoveryBootMode);
97 ASSERT_EFI_ERROR (Status);
100 return Status;
  /device/linaro/bootloader/edk2/OptionRomPkg/Bus/Usb/UsbNetworking/Ax88772/
ComponentName.c 87 EFI_STATUS Status;
90 Status = LookupUnicodeString2 (
97 DBG_EXIT_HEX ( Status );
98 return Status;
169 EFI_STATUS Status;
177 Status = EFI_SUCCESS;
180 // Return the operation status
182 DBG_EXIT_HEX ( Status );
183 return Status;
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Platform/Dxe/Setup/
SetupPlatform.c 59 EFI_STATUS Status;
68 Status = gBS->LocateProtocol (&gEfiHiiDatabaseProtocolGuid, NULL, (VOID**)&mHiiDataBase);
69 ASSERT_EFI_ERROR (Status);
71 Status = gBS->LocateProtocol (&gEfiHiiConfigRoutingProtocolGuid, NULL, (VOID**)&mHiiConfigRouting);
72 ASSERT_EFI_ERROR (Status);
77 Status = InitKeyboardLayout ();
90 Status = gBS->InstallMultipleProtocolInterfaces (
95 ASSERT_EFI_ERROR(Status);
  /device/linaro/bootloader/edk2/StdLib/LibC/Wchar/
ConsDecons.c 36 EFI_STATUS Status;
41 Status = SystemTable->BootServices->AllocatePool(
44 if (EFI_ERROR (Status)) {
46 return Status;
60 EFI_STATUS Status = RETURN_SUCCESS;
63 Status = SystemTable->BootServices->FreePool( __wchar_bitmap);
64 ASSERT_EFI_ERROR (Status);
67 return Status;
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Library/FlashDeviceLib/
FlashDeviceLib.c 39 EFI_STATUS Status = EFI_SUCCESS;
46 Status = mSpiProtocol->Execute (
58 if (EFI_ERROR (Status)) {
65 return Status;
75 EFI_STATUS Status = EFI_SUCCESS;
82 Status = mSpiProtocol->Execute (
94 if (EFI_ERROR (Status)) {
101 return Status;
113 EFI_STATUS Status;
119 Status = mSpiProtocol->Execute (
    [all...]
  /external/tensorflow/tensorflow/compiler/tf2xla/
shape_util.h 29 Status XLAShapeToTensorShape(const xla::Shape& shape,
35 Status TensorShapeToXLAShape(DataType dtype, const TensorShape& tensor_shape,
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
ir_emitter.h 72 Status DefaultAction(HloInstruction* hlo) override;
73 Status HandleConstant(HloInstruction* constant) override;
74 Status HandleBitcast(HloInstruction* bitcast) override;
75 Status HandleGetTupleElement(HloInstruction* get_tuple_element) override;
76 Status HandleDot(HloInstruction* dot) override;
77 Status HandleConvolution(HloInstruction* convolution) override;
78 Status HandleFft(HloInstruction* fft) override;
79 Status HandleCrossReplicaSum(HloInstruction* crs) override;
80 Status HandleInfeed(HloInstruction* infeed) override;
81 Status HandleOutfeed(HloInstruction* outfeed) override
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
source_map_util.h 20 #include "tensorflow/compiler/xla/status.h"
26 // Creates an INVALID_ARUGMENT status with the given format string.
29 // and append it to the status message for source mapping to user code.
33 Status InvalidParameterArgument(Executable* executable, int parameter_number,
39 Status InvalidParameterArgument(const OpMetadata& op_metadata,
  /external/tensorflow/tensorflow/compiler/xla/
test_helpers.h 32 class Status;
43 inline const ::tensorflow::Status& GetStatus(
44 const ::tensorflow::Status& status) {
45 return status;
49 inline const ::tensorflow::Status& GetStatus(const StatusOr<T>& status) {
50 return status.status();
60 // Macros for testing the results of functions that return tensorflow::Status o
    [all...]
  /external/tensorflow/tensorflow/core/kernels/hexagon/
hexagon_remote_fused_graph_executor_build.cc 22 Status BuildRemoteFusedGraphExecutor(
25 return Status::OK();
  /external/tensorflow/tensorflow/core/kernels/
summary_interface.h 22 #include "tensorflow/core/lib/core/status.h"
34 virtual Status Flush() = 0;
37 virtual Status WriteTensor(int64 global_step, Tensor t, const string& tag,
40 virtual Status WriteScalar(int64 global_step, Tensor t,
43 virtual Status WriteHistogram(int64 global_step, Tensor t,
46 virtual Status WriteImage(int64 global_step, Tensor t, const string& tag,
49 virtual Status WriteAudio(int64 global_step, Tensor t, const string& tag,
52 virtual Status WriteGraph(int64 global_step,
55 virtual Status WriteEvent(std::unique_ptr<Event> e) = 0;
  /external/tensorflow/tensorflow/core/lib/core/
status_test_util.h 19 #include "tensorflow/core/lib/core/status.h"
22 // Macros for testing the results of functions that return tensorflow::Status.
24 EXPECT_EQ(::tensorflow::Status::OK(), (statement))
26 ASSERT_EQ(::tensorflow::Status::OK(), (statement))
29 // provide much value (when they fail, they would just print the OK status
30 // which conveys no more information than EXPECT_FALSE(status.ok());
32 // EXPECT_EQ(..expected tensorflow::error::Code..., status.code());
  /external/tensorflow/tensorflow/core/platform/
load_library.h 19 #include "tensorflow/core/lib/core/status.h"
25 Status LoadLibrary(const char* library_filename, void** handle);
26 Status GetSymbolFromLibrary(void* handle, const char* symbol_name,
  /external/tensorflow/tensorflow/python/lib/core/
py_func.h 23 #include "tensorflow/core/lib/core/status.h"
54 Status ConvertTensorToNdarray(const Tensor& t, PyObject** ret);
58 Status ConvertNdarrayToTensor(PyObject* obj, Tensor* ret);
  /external/tensorflow/tensorflow/tools/graph_transforms/
fold_constants_lib.h 20 #include "tensorflow/core/lib/core/status.h"
30 Status FoldConstants(const GraphDef& input_graph_def,
36 Status RemoveUnusedNodes(const GraphDef& input_graph_def,
  /frameworks/hardware/interfaces/displayservice/1.0/
types.hal 18 enum Status : uint32_t {
  /hardware/google/interfaces/media/c2/1.0/
IInputSurfaceConnection.hal 26 * @return status Status of the call, which may be
32 disconnect() generates (Status status);
  /hardware/interfaces/vibrator/1.0/
IVibrator.hal 28 on(uint32_t timeoutMs) generates (Status vibratorOnRet);
36 off() generates (Status vibratorOffRet);
52 * @return status Whether the command was successful or not. Must return
53 * Status::UNSUPPORTED_OPERATION if setting the amplitude is
56 setAmplitude(uint8_t amplitude) generates (Status status);
62 * @return status Whether the effect was successfully performed or not. Must
63 * return Status::UNSUPPORTED_OPERATION is the effect is not
68 * positive, non-zero value if the returned status is
69 * Status::OK, and set to 0 otherwise
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
null_pass.h 28 Status Process(ir::Module*) override { return Status::SuccessWithoutChange; }
  /device/linaro/bootloader/OpenPlatformPkg/Drivers/SdMmc/DwMmcHcDxe/
EmmcDevice.c 55 EFI_STATUS Status;
72 Status = DwMmcPassThruPassThru (PassThru, Slot, &Packet, NULL);
74 return Status;
101 EFI_STATUS Status;
116 Status = DwMmcPassThruPassThru (PassThru, Slot, &Packet, NULL);
117 if (!EFI_ERROR (Status)) {
124 return Status;
149 EFI_STATUS Status;
164 Status = DwMmcPassThruPassThru (PassThru, Slot, &Packet, NULL);
166 return Status;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbBusDxe/
UsbHub.c 62 EFI_STATUS Status;
64 Status = UsbCtrlRequest (
76 return Status;
95 EFI_STATUS Status;
97 Status = UsbCtrlRequest (
109 return Status;
131 EFI_STATUS Status;
137 Status = UsbCtrlRequest (
149 return Status;
179 EFI_STATUS Status;
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Library/BdsLib/
BdsHelper.c 22 EFI_STATUS Status;
35 Status = gBS->GetMemoryMap (
42 if (Status == EFI_BUFFER_TOO_SMALL) {
50 Status = gBS->GetMemoryMap (
60 if (!EFI_ERROR(Status)) {
61 Status = gBS->ExitBootServices (gImageHandle, MapKey);
62 if (EFI_ERROR(Status)) {
68 } while (EFI_ERROR(Status));
70 return Status;
88 EFI_STATUS Status;
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/
ReportStatusCode.c 39 EFI_STATUS Status;
42 Status = gBS->LocateProtocol (&gEfiStatusCodeRuntimeProtocolGuid, NULL, (VOID **) &StatusCode);
43 if (!EFI_ERROR (Status)) {
71 EFI_STATUS Status;
77 Status = EfiLibGetSystemConfigurationTable (&gEfiHobListGuid, (VOID **) &GuidHob.Raw);
78 if (EFI_ERROR (Status)) {
79 return Status;
82 for (Status = EFI_NOT_FOUND; EFI_ERROR (Status);) {
84 Status = EFI_NOT_FOUND;
    [all...]
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/QNCInit/Dxe/
QNCSmbusExec.c 68 EFI_STATUS Status;
76 Status = EFI_SUCCESS;
104 Status = EFI_BUFFER_TOO_SMALL;
122 return Status;
161 reflected in the Host Status Register bit. Device errors are a
182 EFI_STATUS Status;
187 Status = QncSmbusExecCheckParameters (
194 if (EFI_ERROR (Status)) {
195 return Status;
202 SmBusQuickRead (SmbusAddress, &Status);
    [all...]

Completed in 607 milliseconds

1 2 3 4 5 67 8 91011>>