HomeSort by relevance Sort by last modified time
    Searched defs:message (Results 1 - 25 of 1865) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/linux-kselftest/tools/testing/selftests/powerpc/switch_endian/
switch_endian_test.S 6 message: label
76 ld r4, message@got(%r2)
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
TestUtil.java 245 * These are useful for testing various protocol message features, e.g.
246 * set all fields of a message, serialize it, parse it, and check that all
311 * Set every field of {@code message} to the values expected by
314 public static void setAllFields(TestAllTypes.Builder message) {
315 message.setOptionalInt32 (101);
316 message.setOptionalInt64 (102);
317 message.setOptionalUint32 (103);
318 message.setOptionalUint64 (104);
319 message.setOptionalSint32 (105);
320 message.setOptionalSint64 (106)
    [all...]
  /cts/hostsidetests/securitybulletin/securityPatch/CVE-2017-0553/
poc.c 23 struct nl_msg *message = NULL; local
24 message = nlmsg_alloc();
25 if (message == NULL) {
28 nlmsg_append(message, "hello", 0xFFFFFFFF, 4);
  /external/autotest/client/site_tests/platform_ToolchainTests/src/
clang-fortify-common.h 9 const char *message; member in struct:Failure
  /external/clang/test/Parser/
block-block-storageclass.c 8 __block const char * message = "HELLO"; local
14 printf ("%s(%d)\n", message, X);
  /external/clang/test/Sema/
block-storageclass.c 9 __block const char * message = "HELLO"; local
15 printf ("%s(%d)\n", message, X);
  /external/gflags/test/
gflags_declare_flags.cc 6 DECLARE_string(message); // in gflags_delcare_test.cc variable
  /external/grpc-grpc/third_party/nanopb/examples/using_double_on_avr/
encode_double.c 12 AVRDoubleMessage message = { local
20 pb_encode(&stream, AVRDoubleMessage_fields, &message);
decode_double.c 16 AVRDoubleMessage message; local
17 pb_decode(&stream, AVRDoubleMessage_fields, &message);
19 float v1 = double_to_float(message.field1);
20 float v2 = double_to_float(message.field2);
  /external/libcxx/test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.nonvirtuals/
default_ctor.pass.cpp 28 virtual std::string message(int) const {return std::string();} function in class:test1
  /external/mesa3d/src/mesa/x86-64/
x86-64.c 65 static void message( const char *msg ) function
83 message("Initializing x86-64 optimizations\n");
99 message("3Dnow! detected\n");
  /external/nanopb-c/examples/using_double_on_avr/
encode_double.c 12 AVRDoubleMessage message = { local
20 pb_encode(&stream, AVRDoubleMessage_fields, &message);
  /external/perfetto/src/protozero/
message_handle_unittest.cc 20 #include "perfetto/protozero/message.h"
27 Message message; local
28 message.Reset(nullptr);
30 MessageHandle<Message> handle_1(&message);
31 handle_1 = MessageHandle<Message>(&message);
  /external/protobuf/src/google/protobuf/
well_known_types_unittest.cc 44 protobuf_unittest::TestWellKnownTypes message; local
45 EXPECT_EQ(0, message.any_field().ByteSize());
46 EXPECT_EQ(0, message.api_field().ByteSize());
47 EXPECT_EQ(0, message.duration_field().ByteSize());
48 EXPECT_EQ(0, message.empty_field().ByteSize());
49 EXPECT_EQ(0, message.field_mask_field().ByteSize());
50 EXPECT_EQ(0, message.source_context_field().ByteSize());
51 EXPECT_EQ(0, message.struct_field().ByteSize());
52 EXPECT_EQ(0, message.timestamp_field().ByteSize());
53 EXPECT_EQ(0, message.type_field().ByteSize())
    [all...]
  /external/grpc-grpc/examples/php/
greeter_client.php 37 $message = $reply->getMessage(); variable
39 return $message;
  /external/protobuf/objectivec/
GPBMessage.h 52 /// The data being parsed is bad and a message can not be created from it.
54 /// A message can't be serialized because it is missing required fields.
59 /// In DEBUG ONLY, an NSException is thrown when a parsed message doesn't
60 /// contain required fields. This key allows you to retrieve the parsed message
67 /// Base class for all of the generated message classes.
75 /// The unknown fields for this message.
82 /// Are all required fields set in the message and all embedded messages.
86 + (instancetype)message; variable
89 /// the generated message class that the data should be interpreted as. If
93 /// @note In DEBUG builds, the parsed message is checked to be sure all require
    [all...]
  /development/samples/USB/AdbTest/src/com/android/adb/
AdbSocket.java 39 AdbMessage message = new AdbMessage(); local
40 message.set(AdbMessage.A_OPEN, mId, 0, destination);
41 if (! message.write(mDevice)) {
55 public void handleMessage(AdbMessage message) {
56 switch (message.getCommand()) {
58 mPeerId = message.getArg0();
64 mDevice.log(message.getDataString());
71 AdbMessage message = new AdbMessage(); local
72 message.set(AdbMessage.A_OKAY, mId, mPeerId);
73 message.write(mDevice)
    [all...]
  /device/google/contexthub/util/nanotool/
logevent.cpp 33 constexpr size_t kHeaderSize = sizeof(uint32_t) // Message type.
35 + sizeof(char); // Beginning of log message.
41 const char *message = reinterpret_cast<const char *>( local
43 return std::string(message);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
mboxconvert.py 3 # Convert MH directories (1 message per file) or MMDF mailboxes (4x^A
5 # If -f is given, files contain one message per file (e.g. MH messages)
24 dofile = message
63 sts = message(f) or sts
73 sts = message(f, line) or sts
79 counter = 0 # for generating unique Message-ID headers
81 def message(f, delimiter = ''): function
84 m = rfc822.Message(f)
98 # Invent Message-ID header if none is present
99 if not m.has_key('message-id'):
    [all...]
  /external/grpc-grpc/third_party/nanopb/examples/cmake_simple/
simple.c 8 /* This is the buffer where we will store our message. */
13 /* Encode our message */
15 /* Allocate space on the stack to store the message data.
22 SimpleMessage message = SimpleMessage_init_zero; local
28 message.lucky_number = 13;
30 /* Now we are ready to encode the message! */
31 status = pb_encode(&stream, SimpleMessage_fields, &message);
42 /* Now we could transmit the message over network, store it in a file or
49 /* Allocate space for the decoded message. */
50 SimpleMessage message = SimpleMessage_init_zero local
    [all...]
  /external/grpc-grpc/third_party/nanopb/examples/simple/
simple.c 8 /* This is the buffer where we will store our message. */
13 /* Encode our message */
15 /* Allocate space on the stack to store the message data.
22 SimpleMessage message = SimpleMessage_init_zero; local
28 message.lucky_number = 13;
30 /* Now we are ready to encode the message! */
31 status = pb_encode(&stream, SimpleMessage_fields, &message);
42 /* Now we could transmit the message over network, store it in a file or
49 /* Allocate space for the decoded message. */
50 SimpleMessage message = SimpleMessage_init_zero local
    [all...]
  /external/libbrillo/brillo/dbus/
dbus_param_reader_unittest.cc 20 std::unique_ptr<Response> message = Response::CreateEmpty(); local
21 MessageReader reader(message.get());
29 std::unique_ptr<Response> message = Response::CreateEmpty(); local
30 MessageWriter writer(message.get());
32 MessageReader reader(message.get());
44 std::unique_ptr<Response> message = Response::CreateEmpty(); local
45 MessageWriter writer(message.get());
50 MessageReader reader(message.get());
65 std::unique_ptr<Response> message = Response::CreateEmpty(); local
66 MessageWriter writer(message.get())
88 std::unique_ptr<Response> message = Response::CreateEmpty(); local
108 std::unique_ptr<Response> message = Response::CreateEmpty(); local
129 std::unique_ptr<Response> message = Response::CreateEmpty(); local
142 std::unique_ptr<Response> message = Response::CreateEmpty(); local
158 std::unique_ptr<Response> message = Response::CreateEmpty(); local
174 std::unique_ptr<Response> message = Response::CreateEmpty(); local
208 std::unique_ptr<Response> message = Response::CreateEmpty(); local
232 std::unique_ptr<Response> message = Response::CreateEmpty(); local
    [all...]
  /external/libchrome/dbus/
scoped_dbus_error.h 25 const char* message() { return error_.message; } function in class:dbus::ScopedDBusError
  /external/libchrome/mojo/public/cpp/test_support/
test_utils.h 12 #include "mojo/public/cpp/bindings/message.h"
19 mojo::Message message = MojomType::SerializeAsMessage(input); local
24 message = mojo::Message(message.TakeMojoMessage());
26 return MojomType::DeserializeFromMessage(std::move(message), output);
29 // Writes a message to |handle| with message data |text|. Returns true on
33 // Reads a message from |handle|, putting its contents into |*text|. Return
    [all...]
  /external/llvm/tools/llvm-readobj/
Error.cpp 26 std::string message(int ev) const override;
34 std::string _readobj_error_category::message(int EV) const { function in class:_readobj_error_category
48 llvm_unreachable("An enumerator of readobj_error does not have a message "

Completed in 2313 milliseconds

1 2 3 4 5 6 7 8 91011>>