HomeSort by relevance Sort by last modified time
    Searched refs:Result (Results 1 - 25 of 2352) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/generic/goldfish/wifi/ipv6proxy/
result.h 18 class Result {
20 static Result success() {
21 return Result(true);
23 // Construct a result indicating an error. NOTE: the data in |message| will
26 static Result error(const char* message) {
27 return Result(message);
35 explicit Result(bool success) : mSuccess(success) { }
36 explicit Result(const char* message)
  /external/grpc-grpc/test/cpp/qps/
usage_timer.h 26 struct Result {
34 Result Mark() const;
39 static Result Sample();
41 const Result start_;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
MemAlloc.h 27 void *Result = std::malloc(Sz);
28 if (Result == nullptr)
30 return Result;
35 void *Result = std::calloc(Count, Sz);
36 if (Result == nullptr)
38 return Result;
42 void *Result = std::realloc(Ptr, Sz);
43 if (Result == nullptr)
45 return Result;
  /cts/tests/tests/graphics/src/android/graphics/cts/
Interpolator_ResultTest.java 21 import android.graphics.Interpolator.Result;
34 assertEquals(Result.FREEZE_START, Result.valueOf("FREEZE_START"));
35 assertEquals(Result.FREEZE_END, Result.valueOf("FREEZE_END"));
36 assertEquals(Result.NORMAL, Result.valueOf("NORMAL"));
41 Result[] result = Result.values() local
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/
MultU64x32.c 27 generates a 64-bit unsigned result.
30 unsigned value Multiplier and generates a 64-bit unsigned result. This 64-
31 bit unsigned result is returned.
46 UINT64 Result;
48 Result = InternalMathMultU64x32 (Multiplicand, Multiplier);
50 return Result;
MultU64x64.c 27 generates a 64-bit unsigned result.
30 unsigned value Multiplier and generates a 64-bit unsigned result. This 64-
31 bit unsigned result is returned.
46 UINT64 Result;
48 Result = InternalMathMultU64x64 (Multiplicand, Multiplier);
50 return Result;
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/
MultU64x32.c 22 generates a 64-bit unsigned result.
25 unsigned value Multiplier and generates a 64-bit unsigned result. This 64-
26 bit unsigned result is returned.
41 UINT64 Result;
43 Result = InternalMathMultU64x32 (Multiplicand, Multiplier);
45 return Result;
MultU64x64.c 22 generates a 64-bit unsigned result.
25 unsigned value Multiplier and generates a 64-bit unsigned result. This 64-
26 bit unsigned result is returned.
41 UINT64 Result;
43 Result = InternalMathMultU64x64 (Multiplicand, Multiplier);
45 return Result;
  /external/swiftshader/third_party/LLVM/lib/Support/
SystemUtils.cpp 46 sys::Path Result = sys::Path::GetMainExecutable(Argv0, MainAddr);
47 Result.eraseComponent();
49 if (!Result.isEmpty()) {
50 Result.appendComponent(ExeName);
51 Result.appendSuffix(sys::Path::GetEXESuffix());
54 return Result;
  /cts/libs/vogar-expect/src/vogar/
Result.java 20 * The result of a test or benchmark execution.
22 public enum Result {
  /device/generic/goldfish/network/netmgr/commands/
command.h 19 #include "../result.h"
29 // Work to perform when a command is received. The result will be used to
30 // report the result to the user. If the result indicates success the user
31 // will see an "OK" response, on failure the error message in the result
32 // will be presented to the user. This means that the result error string
34 virtual Result onCommand(const char* command, const char* args) = 0;
  /external/vogar/src/vogar/
Result.java 20 * The result of a test or benchmark execution.
22 public enum Result {
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineRelocation.h 40 isResult, // Relocation has be transformed into its result pointer.
58 void *Result; // If this has been resolved to a resolved pointer
87 MachineRelocation Result;
88 Result.Offset = offset;
89 Result.ConstantVal = cst;
90 Result.TargetReloType = RelocationType;
91 Result.AddrType = isGV;
92 Result.MayNeedFarStub = MayNeedFarStub;
93 Result.GOTRelative = GOTrelative;
94 Result.TargetResolve = false
    [all...]
  /art/cmdline/
cmdline_type_parser.h 31 using Result = CmdlineParseResult<T>;
37 Result Parse(const std::string& args ATTRIBUTE_UNUSED) {
39 return Result::Failure("Missing type specialization and/or value map");
49 Result ParseAndAppend(const std::string& args ATTRIBUTE_UNUSED,
52 return Result::Failure("Missing type specialization and/or value map");
  /frameworks/base/cmds/idmap2/include/idmap2/
Result.h 50 class Result {
52 Result(const T& value); // NOLINT(runtime/explicit)
53 Result(T&& value) noexcept; // NOLINT(runtime/explicit)
55 Result(const Error& error); // NOLINT(runtime/explicit)
56 Result(Error&& error) noexcept; // NOLINT(runtime/explicit)
58 Result(const Result& error) = default;
60 Result& operator=(const Result& rhs) = default;
61 Result& operator=(Result&& rhs) noexcept = default
    [all...]
  /device/generic/goldfish/dhcp/client/
interface.h 18 #include "result.h"
31 Result init(const char* interfaceName);
40 Result bringUp();
41 Result bringDown();
42 Result setMtu(uint16_t mtu);
43 Result setAddress(in_addr_t address);
44 Result setSubnetMask(in_addr_t subnetMask);
48 Result populateIndex();
49 Result populateMacAddress();
50 Result setInterfaceUp(bool shouldBeUp)
    [all...]
router.h 22 #include "result.h"
30 Result init();
37 Result setDefaultGateway(in_addr_t gateway, unsigned int interfaceIndex);
39 Result sendNetlinkMessage(const void* data, size_t size);
  /device/generic/goldfish/dhcp/common/
result.h 23 class Result {
25 static Result success() {
26 return Result(true);
28 // Construct a result indicating an error.
29 static Result error(std::string message) {
30 return Result(message);
32 static Result error(const char* format, ...) {
39 return Result(std::string(buffer));
47 explicit Result(bool success) : mSuccess(success) { }
48 explicit Result(std::string message
    [all...]
socket.h 19 #include "result.h"
36 Result open(int domain, int type, int protocol);
38 Result bind(const void* sockaddr, size_t sockaddrLength);
40 Result bindIp(in_addr_t address, uint16_t port);
42 Result bindRaw(unsigned int interfaceIndex);
46 Result sendOnInterface(unsigned int interfaceIndex,
54 Result sendRawUdp(in_addr_t source,
62 Result receiveFromInterface(Message* message, unsigned int* interfaceIndex);
68 // only return an error result if the actual receiving fails.
69 Result receiveRawUdp(uint16_t expectedPort
    [all...]
  /device/generic/goldfish/network/netmgr/
result.h 23 class Result {
25 static Result success() {
26 return Result(true);
28 // Construct a result indicating an error.
29 static Result error(std::string message) {
30 return Result(message);
32 static Result error(const char* format, ...) {
39 return Result(std::string(buffer));
47 explicit Result(bool success) : mSuccess(success) { }
48 explicit Result(std::string message
    [all...]
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
Result.java 20 * Represents the result of a test.
22 public interface Result {
26 * Sets the test result of this object.
28 * @param resultCode The test result, either {@code RESULT_OK} or {@code RESULT_FAIL}.
  /cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
Result.java 20 * Represents the result of a test.
22 public interface Result {
26 * Sets the test result of this object.
28 * @param resultCode The test result, either {@code RESULT_OK} or {@code RESULT_FAIL}.
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Pei/Dependency/
Dependency.h 28 BOOLEAN Result;
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
VectorExtras.h 31 std::vector<T> Result;
32 Result.push_back(A);
34 Result.push_back(Val);
36 return Result;
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/tools/llvm-cfi-verify/
GraphBuilder.cpp 83 void PrintTo(const GraphResult &Result, ::std::ostream *os) {
84 *os << "Result BaseAddress: 0x" << std::hex << Result.BaseAddress << "\n";
86 if (Result.ConditionalBranchNodes.empty())
89 for (const auto &Node : Result.ConditionalBranchNodes) {
93 << HexStringifyContainer(Result.flattenAddress(Node.Fallthrough))
96 << HexStringifyContainer(Result.flattenAddress(Node.Target)) << "\n";
99 if (Result.OrphanedNodes.empty())
102 for (const auto &Orphan : Result.OrphanedNodes) {
104 << ") Path: " << HexStringifyContainer(Result.flattenAddress(Orphan)
    [all...]

Completed in 1745 milliseconds

1 2 3 4 5 6 7 8 91011>>