Home
last modified time | relevance | path

Searched full:msg (Results 1 – 25 of 9181) sorted by relevance

12345678910>>...368

/external/kernel-headers/original/uapi/linux/
Dcec-funcs.h14 static inline void cec_msg_active_source(struct cec_msg *msg, __u16 phys_addr) in cec_msg_active_source() argument
16 msg->len = 4; in cec_msg_active_source()
17 msg->msg[0] |= 0xf; /* broadcast */ in cec_msg_active_source()
18 msg->msg[1] = CEC_MSG_ACTIVE_SOURCE; in cec_msg_active_source()
19 msg->msg[2] = phys_addr >> 8; in cec_msg_active_source()
20 msg->msg[3] = phys_addr & 0xff; in cec_msg_active_source()
23 static inline void cec_ops_active_source(const struct cec_msg *msg, in cec_ops_active_source() argument
26 *phys_addr = (msg->msg[2] << 8) | msg->msg[3]; in cec_ops_active_source()
29 static inline void cec_msg_image_view_on(struct cec_msg *msg) in cec_msg_image_view_on() argument
31 msg->len = 2; in cec_msg_image_view_on()
[all …]
/external/protobuf/objectivec/Tests/
DGPBMessageTests+Runtime.m342 //% Message2 *msg = [[Message2 alloc] init];
343 //% XCTAssertFalse(msg.hasOptional##FIELD);
344 //% XCTAssertFalse(GPBMessageHasFieldNumberSet(msg, Message2_FieldNumber_Optional##FIELD));
345 //% msg.optional##FIELD = NON_ZERO_VALUE;
346 //% XCTAssertTrue(msg.hasOptional##FIELD);
347 //% XCTAssertTrue(GPBMessageHasFieldNumberSet(msg, Message2_FieldNumber_Optional##FIELD));
348 //% [msg release];
351 //% Message2 *msg = [[Message2 alloc] init];
352 //% XCTAssertFalse(msg.hasOptional##FIELD);
353 //% XCTAssertFalse(GPBMessageHasFieldNumberSet(msg, Message2_FieldNumber_Optional##FIELD));
[all …]
DGPBSwiftTests.swift39 let msg = Message2() in testProto2Basics() variable
43 msg.optionalInt32 = 100 in testProto2Basics()
44 msg.optionalString = "abc" in testProto2Basics()
45 msg.optionalEnum = .bar in testProto2Basics()
47 msg.optional = msg2 in testProto2Basics()
49 msg.optionalGroup = msg3 in testProto2Basics()
50 msg.repeatedInt32Array.addValue(300) in testProto2Basics()
51 msg.repeatedInt32Array.addValue(301) in testProto2Basics()
52 msg.repeatedStringArray.add("mno") in testProto2Basics()
53 msg.repeatedStringArray.add("pqr") in testProto2Basics()
[all …]
/external/cronet/third_party/protobuf/objectivec/Tests/
DGPBMessageTests+Runtime.m342 //% Message2 *msg = [[Message2 alloc] init];
343 //% XCTAssertFalse(msg.hasOptional##FIELD);
344 //% XCTAssertFalse(GPBMessageHasFieldNumberSet(msg, Message2_FieldNumber_Optional##FIELD));
345 //% msg.optional##FIELD = NON_ZERO_VALUE;
346 //% XCTAssertTrue(msg.hasOptional##FIELD);
347 //% XCTAssertTrue(GPBMessageHasFieldNumberSet(msg, Message2_FieldNumber_Optional##FIELD));
348 //% [msg release];
351 //% Message2 *msg = [[Message2 alloc] init];
352 //% XCTAssertFalse(msg.hasOptional##FIELD);
353 //% XCTAssertFalse(GPBMessageHasFieldNumberSet(msg, Message2_FieldNumber_Optional##FIELD));
[all …]
DGPBSwiftTests.swift39 let msg = Message2() in testProto2Basics() variable
43 msg.optionalInt32 = 100 in testProto2Basics()
44 msg.optionalString = "abc" in testProto2Basics()
45 msg.optionalEnum = .bar in testProto2Basics()
47 msg.optional = msg2 in testProto2Basics()
49 msg.optionalGroup = msg3 in testProto2Basics()
50 msg.repeatedInt32Array.addValue(300) in testProto2Basics()
51 msg.repeatedInt32Array.addValue(301) in testProto2Basics()
52 msg.repeatedStringArray.add("mno") in testProto2Basics()
53 msg.repeatedStringArray.add("pqr") in testProto2Basics()
[all …]
/external/angle/src/libANGLE/
DErrorStrings.h16 #define MSG constexpr const char * macro
19 MSG k3DDepthStencil = "Format cannot be GL_DEPTH_COMPONENT or GL_DEPTH_STENCIL if target is GL_TEXT…
20 MSG kANGLECopyTexture3DUnavailable = "GL_ANGLE_copy_texture_3d extension not available.";
21 MSG kANGLECopyTextureMissingRequiredExtension = "Copy*TextureCHROMIUM from EXTERNAL_OES to integer …
22 MSG kAdvancedBlendEquationWithMRT = "Advanced blend equation can only be used when only one draw bu…
23 MSG kAdvancedBlendExtensionNotEnabled = "GL_KHR_blend_equation_advanced extension not enabled.";
24 MSG kAtomicCounterResourceName = "Active atomic counter resources are not assigned name strings.";
25 MSG kAttributeListNotNull = "Attribute list must be NULL or GL_NONE";
26 MSG kAttributeZeroRequiresDivisorLimitation = "The current context doesn't support setting a non-ze…
27 MSG kBaseLevelNegative = "Base level must be at least 0.";
[all …]
/external/trusty/arm-trusted-firmware/plat/imx/common/sci/svc/rm/
Drm_rpc_clnt.c35 sc_rpc_msg_t msg; in sc_rm_partition_alloc() local
38 RPC_VER(&msg) = SC_RPC_VERSION; in sc_rm_partition_alloc()
39 RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM; in sc_rm_partition_alloc()
40 RPC_FUNC(&msg) = (uint8_t)RM_FUNC_PARTITION_ALLOC; in sc_rm_partition_alloc()
41 RPC_U8(&msg, 0U) = (uint8_t)secure; in sc_rm_partition_alloc()
42 RPC_U8(&msg, 1U) = (uint8_t)isolated; in sc_rm_partition_alloc()
43 RPC_U8(&msg, 2U) = (uint8_t)restricted; in sc_rm_partition_alloc()
44 RPC_U8(&msg, 3U) = (uint8_t)grant; in sc_rm_partition_alloc()
45 RPC_U8(&msg, 4U) = (uint8_t)coherent; in sc_rm_partition_alloc()
46 RPC_SIZE(&msg) = 3U; in sc_rm_partition_alloc()
[all …]
/external/arm-trusted-firmware/plat/imx/common/sci/svc/rm/
Drm_rpc_clnt.c35 sc_rpc_msg_t msg; in sc_rm_partition_alloc() local
38 RPC_VER(&msg) = SC_RPC_VERSION; in sc_rm_partition_alloc()
39 RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_RM; in sc_rm_partition_alloc()
40 RPC_FUNC(&msg) = (uint8_t)RM_FUNC_PARTITION_ALLOC; in sc_rm_partition_alloc()
41 RPC_U8(&msg, 0U) = (uint8_t)secure; in sc_rm_partition_alloc()
42 RPC_U8(&msg, 1U) = (uint8_t)isolated; in sc_rm_partition_alloc()
43 RPC_U8(&msg, 2U) = (uint8_t)restricted; in sc_rm_partition_alloc()
44 RPC_U8(&msg, 3U) = (uint8_t)grant; in sc_rm_partition_alloc()
45 RPC_U8(&msg, 4U) = (uint8_t)coherent; in sc_rm_partition_alloc()
46 RPC_SIZE(&msg) = 3U; in sc_rm_partition_alloc()
[all …]
/external/rust/beto-rust/nearby/crypto/crypto_provider_test/src/testdata/EdDSA/
Drfc_test_vectors.txt8 # print "MSG: " $3; print "SIG: " substr($4,0,128); print ""}'
10 # The PK appended to the SK and the MSG appended to the SIG have been
16 MSG:
22 MSG: 72
28 MSG: af82
34 MSG: cbc77b
40 MSG: 5f4c8989
46 MSG: 18b6bec097
52 MSG: 89010d855972
58 MSG: b4a8f381e70e7a
[all …]
/external/trusty/arm-trusted-firmware/plat/imx/common/sci/svc/misc/
Dmisc_rpc_clnt.c34 sc_rpc_msg_t msg; in sc_misc_set_control() local
37 RPC_VER(&msg) = SC_RPC_VERSION; in sc_misc_set_control()
38 RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_MISC; in sc_misc_set_control()
39 RPC_FUNC(&msg) = (uint8_t)MISC_FUNC_SET_CONTROL; in sc_misc_set_control()
40 RPC_U32(&msg, 0U) = (uint32_t)ctrl; in sc_misc_set_control()
41 RPC_U32(&msg, 4U) = (uint32_t)val; in sc_misc_set_control()
42 RPC_U16(&msg, 8U) = (uint16_t)resource; in sc_misc_set_control()
43 RPC_SIZE(&msg) = 4U; in sc_misc_set_control()
45 sc_call_rpc(ipc, &msg, SC_FALSE); in sc_misc_set_control()
47 result = RPC_R8(&msg); in sc_misc_set_control()
[all …]
/external/arm-trusted-firmware/plat/imx/common/sci/svc/misc/
Dmisc_rpc_clnt.c34 sc_rpc_msg_t msg; in sc_misc_set_control() local
37 RPC_VER(&msg) = SC_RPC_VERSION; in sc_misc_set_control()
38 RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_MISC; in sc_misc_set_control()
39 RPC_FUNC(&msg) = (uint8_t)MISC_FUNC_SET_CONTROL; in sc_misc_set_control()
40 RPC_U32(&msg, 0U) = (uint32_t)ctrl; in sc_misc_set_control()
41 RPC_U32(&msg, 4U) = (uint32_t)val; in sc_misc_set_control()
42 RPC_U16(&msg, 8U) = (uint16_t)resource; in sc_misc_set_control()
43 RPC_SIZE(&msg) = 4U; in sc_misc_set_control()
45 sc_call_rpc(ipc, &msg, SC_FALSE); in sc_misc_set_control()
47 result = RPC_R8(&msg); in sc_misc_set_control()
[all …]
/external/trusty/arm-trusted-firmware/plat/imx/common/sci/svc/pm/
Dpm_rpc_clnt.c34 sc_rpc_msg_t msg; in sc_pm_set_sys_power_mode() local
37 RPC_VER(&msg) = SC_RPC_VERSION; in sc_pm_set_sys_power_mode()
38 RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_PM; in sc_pm_set_sys_power_mode()
39 RPC_FUNC(&msg) = (uint8_t)PM_FUNC_SET_SYS_POWER_MODE; in sc_pm_set_sys_power_mode()
40 RPC_U8(&msg, 0U) = (uint8_t)mode; in sc_pm_set_sys_power_mode()
41 RPC_SIZE(&msg) = 2U; in sc_pm_set_sys_power_mode()
43 sc_call_rpc(ipc, &msg, SC_FALSE); in sc_pm_set_sys_power_mode()
45 result = RPC_R8(&msg); in sc_pm_set_sys_power_mode()
52 sc_rpc_msg_t msg; in sc_pm_set_partition_power_mode() local
55 RPC_VER(&msg) = SC_RPC_VERSION; in sc_pm_set_partition_power_mode()
[all …]
/external/arm-trusted-firmware/plat/imx/common/sci/svc/pm/
Dpm_rpc_clnt.c34 sc_rpc_msg_t msg; in sc_pm_set_sys_power_mode() local
37 RPC_VER(&msg) = SC_RPC_VERSION; in sc_pm_set_sys_power_mode()
38 RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_PM; in sc_pm_set_sys_power_mode()
39 RPC_FUNC(&msg) = (uint8_t)PM_FUNC_SET_SYS_POWER_MODE; in sc_pm_set_sys_power_mode()
40 RPC_U8(&msg, 0U) = (uint8_t)mode; in sc_pm_set_sys_power_mode()
41 RPC_SIZE(&msg) = 2U; in sc_pm_set_sys_power_mode()
43 sc_call_rpc(ipc, &msg, SC_FALSE); in sc_pm_set_sys_power_mode()
45 result = RPC_R8(&msg); in sc_pm_set_sys_power_mode()
52 sc_rpc_msg_t msg; in sc_pm_set_partition_power_mode() local
55 RPC_VER(&msg) = SC_RPC_VERSION; in sc_pm_set_partition_power_mode()
[all …]
/external/rust/beto-rust/nearby/crypto/crypto_provider_test/src/testdata/
DSHA512ShortMsg.rsp9 Msg = 00
13 Msg = 21
17 Msg = 9083
21 Msg = 0a55db
25 Msg = 23be86d5
29 Msg = eb0ca946c1
33 Msg = 38667f39277b
37 Msg = b39f71aaa8a108
41 Msg = 6f8d58b7cab1888c
45 Msg = 162b0cf9b3750f9438
[all …]
DSHA512LongMsg.rsp9 Msg = 4f05600950664d5190a2ebc29c9edb89c20079a4d3e6bc3b27d75e34e2fa3d02768502bd69790078598d5fcf3d677…
13 Msg = d5e378ae9fc2648f4a13bbec4b0935afb4f822f5fe0d5063053d2fbd547b33b4a32e7a009ee2afafe83d2ebd60356…
17 Msg = 4f7a5618870945b89f194e31b1aa802c5350326dc691df58708e34b48ce666b021d7c92330a69f1832412d8ac2241…
21 Msg = 5e0e84419c02ddda289aa126bdb40a060464aa58b88bad2708ab5f1e3df9ee439cb470e28eb627c6fe4904af033b6…
25 Msg = f516561edc530bf7aa1a63307d62812fb560dd5da66297298ffb0c4fd060a85a5712fb675cbd0e2d4e60f73a0dafa…
29 Msg = bc4b7d3a380be067ed7a2a02f6137cf2aaa6f5332aa0dd34368d237e45db0a97d4e11f26fe206e574dc8f581d07e5…
33 Msg = edba7d6312144e90ec9eaace7576045a46e553dcb8ee5a9849272de841c8f1ea9502e3760b929c539f9593aa259ee…
37 Msg = 89eb3056770a6157f06921bc153834447c4b6d862d10d185f1c3f984cde5b81cc9eafe8bf532fc4fae3a89f41e14c…
41 Msg = afdccc84f257cb768b7ad735edbd1990b6114bad876928ab1279208574bd513ac6beb32bee9192c4bba0425e32ad0…
45 Msg = 7a26b7f55809d58528540601c87db4bb8e908c3d2d82823addc315c4b612d4be5d952195e329352beaf764140a48a…
[all …]
/external/rust/crates/ring/third_party/NIST/SHAVS/
DSHA384ShortMsg.rsp9 Msg = 00
13 Msg = c5
17 Msg = 6ece
21 Msg = 1fa4d5
25 Msg = 50e3853d
29 Msg = 4b5fab61e0
33 Msg = dad95a4b4d37
37 Msg = 121835fe3700b7
41 Msg = de60275bdafce4b1
45 Msg = 8d45a55d5ce1f928e6
[all …]
DSHA512ShortMsg.rsp9 Msg = 00
13 Msg = 21
17 Msg = 9083
21 Msg = 0a55db
25 Msg = 23be86d5
29 Msg = eb0ca946c1
33 Msg = 38667f39277b
37 Msg = b39f71aaa8a108
41 Msg = 6f8d58b7cab1888c
45 Msg = 162b0cf9b3750f9438
[all …]
DSHA512LongMsg.rsp9 Msg = 4f05600950664d5190a2ebc29c9edb89c20079a4d3e6bc3b27d75e34e2fa3d02768502bd69790078598d5fcf3d677…
13 Msg = d5e378ae9fc2648f4a13bbec4b0935afb4f822f5fe0d5063053d2fbd547b33b4a32e7a009ee2afafe83d2ebd60356…
17 Msg = 4f7a5618870945b89f194e31b1aa802c5350326dc691df58708e34b48ce666b021d7c92330a69f1832412d8ac2241…
21 Msg = 5e0e84419c02ddda289aa126bdb40a060464aa58b88bad2708ab5f1e3df9ee439cb470e28eb627c6fe4904af033b6…
25 Msg = f516561edc530bf7aa1a63307d62812fb560dd5da66297298ffb0c4fd060a85a5712fb675cbd0e2d4e60f73a0dafa…
29 Msg = bc4b7d3a380be067ed7a2a02f6137cf2aaa6f5332aa0dd34368d237e45db0a97d4e11f26fe206e574dc8f581d07e5…
33 Msg = edba7d6312144e90ec9eaace7576045a46e553dcb8ee5a9849272de841c8f1ea9502e3760b929c539f9593aa259ee…
37 Msg = 89eb3056770a6157f06921bc153834447c4b6d862d10d185f1c3f984cde5b81cc9eafe8bf532fc4fae3a89f41e14c…
41 Msg = afdccc84f257cb768b7ad735edbd1990b6114bad876928ab1279208574bd513ac6beb32bee9192c4bba0425e32ad0…
45 Msg = 7a26b7f55809d58528540601c87db4bb8e908c3d2d82823addc315c4b612d4be5d952195e329352beaf764140a48a…
[all …]
DSHA384LongMsg.rsp9 Msg = 62c6a169b9be02b3d7b471a964fc0bcc72b480d26aecb2ed460b7f50016ddaf04c51218783f3aadfdff5a04ded030…
13 Msg = ffd67890ff77f344ad4f067df2f4ff1db8f541c7a2bd9ae9fabad0faebbf7d00f0a71d568c3c66ac3c57d84faa489…
17 Msg = be105a6c585a766aa1f290b632219ff864ea6674b5e3f9846d447d46813e2f92b78ea82f0b515f46511a6f161d429…
21 Msg = b41ef4a2b31d3a47a5e8386925fb90fbe980ca2cf6ba34e814a3eca280d43b51e2a624b87e973debaeefbe0f90a3d…
25 Msg = 52a6741b9ea02569dabf96ec0b3e2462866eea4a635bd7a42fad04f8e1cc45990f48ff2b627739634860f50ee8d7c…
29 Msg = cc990092fb16b6311fe4d66dd5c472215e807f82e71d34f60e58b32aa351eb5eab81bd04abf15d8a23aefc745878a…
33 Msg = 546a582d46de5b45d3f71166ef69aa0704848c0a3963b194f4674a1d9de4a9c3a6195de4c8669feb8fb9ed6a184af…
37 Msg = b8727e619a77b72152a46d80efe1c1ad34f131b83e8f614967bd1b926b599482c9f1f13b6cd809c78b796d06ceeca…
41 Msg = f6b1cf75b5cfa4ab323cf04ff13b7a591b23d06ed25f3c04c1baf4c8f7da913cf509c2a5053c4224ce4d0723268cb…
45 Msg = 102401c84a716ae72579c6ae79c359ea309ffd95abffae4c61884c03c9e99df77b6c92e492cacb7854445c0815efd…
[all …]
/external/trusty/arm-trusted-firmware/plat/imx/common/sci/svc/timer/
Dtimer_rpc_clnt.c33 sc_rpc_msg_t msg; in sc_timer_set_wdog_timeout() local
36 RPC_VER(&msg) = SC_RPC_VERSION; in sc_timer_set_wdog_timeout()
37 RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_TIMER; in sc_timer_set_wdog_timeout()
38 RPC_FUNC(&msg) = (uint8_t)TIMER_FUNC_SET_WDOG_TIMEOUT; in sc_timer_set_wdog_timeout()
39 RPC_U32(&msg, 0U) = (uint32_t)timeout; in sc_timer_set_wdog_timeout()
40 RPC_SIZE(&msg) = 2U; in sc_timer_set_wdog_timeout()
42 sc_call_rpc(ipc, &msg, SC_FALSE); in sc_timer_set_wdog_timeout()
44 result = RPC_R8(&msg); in sc_timer_set_wdog_timeout()
51 sc_rpc_msg_t msg; in sc_timer_set_wdog_pre_timeout() local
54 RPC_VER(&msg) = SC_RPC_VERSION; in sc_timer_set_wdog_pre_timeout()
[all …]
/external/arm-trusted-firmware/plat/imx/common/sci/svc/timer/
Dtimer_rpc_clnt.c33 sc_rpc_msg_t msg; in sc_timer_set_wdog_timeout() local
36 RPC_VER(&msg) = SC_RPC_VERSION; in sc_timer_set_wdog_timeout()
37 RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_TIMER; in sc_timer_set_wdog_timeout()
38 RPC_FUNC(&msg) = (uint8_t)TIMER_FUNC_SET_WDOG_TIMEOUT; in sc_timer_set_wdog_timeout()
39 RPC_U32(&msg, 0U) = (uint32_t)timeout; in sc_timer_set_wdog_timeout()
40 RPC_SIZE(&msg) = 2U; in sc_timer_set_wdog_timeout()
42 sc_call_rpc(ipc, &msg, SC_FALSE); in sc_timer_set_wdog_timeout()
44 result = RPC_R8(&msg); in sc_timer_set_wdog_timeout()
51 sc_rpc_msg_t msg; in sc_timer_set_wdog_pre_timeout() local
54 RPC_VER(&msg) = SC_RPC_VERSION; in sc_timer_set_wdog_pre_timeout()
[all …]
/external/libnl/lib/netfilter/
Dlog_msg_obj.c47 struct nfnl_log_msg *msg = (struct nfnl_log_msg *) c; in log_msg_free_data() local
49 if (msg == NULL) in log_msg_free_data()
52 free(msg->log_msg_payload); in log_msg_free_data()
53 free(msg->log_msg_prefix); in log_msg_free_data()
54 free(msg->log_msg_hwheader); in log_msg_free_data()
55 if (msg->log_msg_ct) in log_msg_free_data()
56 nfnl_ct_put(msg->log_msg_ct); in log_msg_free_data()
104 struct nfnl_log_msg *msg = (struct nfnl_log_msg *) a; in log_msg_dump() local
112 if (msg->ce_mask & LOG_MSG_ATTR_PREFIX) in log_msg_dump()
113 nl_dump(p, "%s", msg->log_msg_prefix); in log_msg_dump()
[all …]
/external/arm-trusted-firmware/plat/imx/common/sci/svc/pad/
Dpad_rpc_clnt.c34 sc_rpc_msg_t msg; in sc_pad_set_mux() local
37 RPC_VER(&msg) = SC_RPC_VERSION; in sc_pad_set_mux()
38 RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_PAD; in sc_pad_set_mux()
39 RPC_FUNC(&msg) = (uint8_t)PAD_FUNC_SET_MUX; in sc_pad_set_mux()
40 RPC_U16(&msg, 0U) = (uint16_t)pad; in sc_pad_set_mux()
41 RPC_U8(&msg, 2U) = (uint8_t)mux; in sc_pad_set_mux()
42 RPC_U8(&msg, 3U) = (uint8_t)config; in sc_pad_set_mux()
43 RPC_U8(&msg, 4U) = (uint8_t)iso; in sc_pad_set_mux()
44 RPC_SIZE(&msg) = 3U; in sc_pad_set_mux()
46 sc_call_rpc(ipc, &msg, SC_FALSE); in sc_pad_set_mux()
[all …]
/external/trusty/arm-trusted-firmware/plat/imx/common/sci/svc/pad/
Dpad_rpc_clnt.c34 sc_rpc_msg_t msg; in sc_pad_set_mux() local
37 RPC_VER(&msg) = SC_RPC_VERSION; in sc_pad_set_mux()
38 RPC_SVC(&msg) = (uint8_t)SC_RPC_SVC_PAD; in sc_pad_set_mux()
39 RPC_FUNC(&msg) = (uint8_t)PAD_FUNC_SET_MUX; in sc_pad_set_mux()
40 RPC_U16(&msg, 0U) = (uint16_t)pad; in sc_pad_set_mux()
41 RPC_U8(&msg, 2U) = (uint8_t)mux; in sc_pad_set_mux()
42 RPC_U8(&msg, 3U) = (uint8_t)config; in sc_pad_set_mux()
43 RPC_U8(&msg, 4U) = (uint8_t)iso; in sc_pad_set_mux()
44 RPC_SIZE(&msg) = 3U; in sc_pad_set_mux()
46 sc_call_rpc(ipc, &msg, SC_FALSE); in sc_pad_set_mux()
[all …]
/external/cronet/third_party/protobuf/js/compatibility_tests/v3.0.0/
Dproto3_test.js73 var msg = new proto.jspb.test.TestProto3();
75 assertEquals(msg.getOptionalInt32(), 0);
76 assertEquals(msg.getOptionalInt64(), 0);
77 assertEquals(msg.getOptionalUint32(), 0);
78 assertEquals(msg.getOptionalUint64(), 0);
79 assertEquals(msg.getOptionalSint32(), 0);
80 assertEquals(msg.getOptionalSint64(), 0);
81 assertEquals(msg.getOptionalFixed32(), 0);
82 assertEquals(msg.getOptionalFixed64(), 0);
83 assertEquals(msg.getOptionalSfixed32(), 0);
[all …]

12345678910>>...368