Lines Matching refs:constexpr
17 static constexpr char kCastInternalNamespacePrefix[] =
19 static constexpr char kTransportNamespacePrefix[] =
21 static constexpr char kAuthNamespace[] =
23 static constexpr char kHeartbeatNamespace[] =
25 static constexpr char kConnectionNamespace[] =
27 static constexpr char kReceiverNamespace[] =
29 static constexpr char kBroadcastNamespace[] =
31 static constexpr char kMediaNamespace[] = "urn:x-cast:com.google.cast.media";
34 static constexpr char kPlatformSenderId[] = "sender-0";
35 static constexpr char kPlatformReceiverId[] = "receiver-0";
37 static constexpr char kBroadcastId[] = "*";
39 static constexpr ::cast::channel::CastMessage_ProtocolVersion
44 static constexpr char kMessageKeyType[] = "type";
45 static constexpr char kMessageKeyProtocolVersion[] = "protocolVersion";
46 static constexpr char kMessageKeyProtocolVersionList[] = "protocolVersionList";
47 static constexpr char kMessageKeyReasonCode[] = "reasonCode";
48 static constexpr char kMessageKeyAppId[] = "appId";
49 static constexpr char kMessageKeyRequestId[] = "requestId";
50 static constexpr char kMessageKeyResponseType[] = "responseType";
51 static constexpr char kMessageKeyTransportId[] = "transportId";
52 static constexpr char kMessageKeySessionId[] = "sessionId";
55 static constexpr char kMessageTypeConnect[] = "CONNECT";
56 static constexpr char kMessageTypeClose[] = "CLOSE";
57 static constexpr char kMessageTypeConnected[] = "CONNECTED";
58 static constexpr char kMessageValueAppAvailable[] = "APP_AVAILABLE";
59 static constexpr char kMessageValueAppUnavailable[] = "APP_UNAVAILABLE";
62 static constexpr char kMessageKeyBrowserVersion[] = "browserVersion";
63 static constexpr char kMessageKeyConnType[] = "connType";
64 static constexpr char kMessageKeyConnectionType[] = "connectionType";
65 static constexpr char kMessageKeyUserAgent[] = "userAgent";
66 static constexpr char kMessageKeyOrigin[] = "origin";
67 static constexpr char kMessageKeyPlatform[] = "platform";
68 static constexpr char kMessageKeySdkType[] = "skdType";
69 static constexpr char kMessageKeySenderInfo[] = "senderInfo";
70 static constexpr char kMessageKeyVersion[] = "version";
73 static constexpr char kMessageKeyAvailability[] = "availability";
74 static constexpr char kMessageKeyAppParams[] = "appParams";
75 static constexpr char kMessageKeyApplications[] = "applications";
76 static constexpr char kMessageKeyControlType[] = "controlType";
77 static constexpr char kMessageKeyDisplayName[] = "displayName";
78 static constexpr char kMessageKeyIsIdleScreen[] = "isIdleScreen";
79 static constexpr char kMessageKeyLaunchedFromCloud[] = "launchedFromCloud";
80 static constexpr char kMessageKeyLevel[] = "level";
81 static constexpr char kMessageKeyMuted[] = "muted";
82 static constexpr char kMessageKeyName[] = "name";
83 static constexpr char kMessageKeyNamespaces[] = "namespaces";
84 static constexpr char kMessageKeyReason[] = "reason";
85 static constexpr char kMessageKeyStatus[] = "status";
86 static constexpr char kMessageKeyStepInterval[] = "stepInterval";
87 static constexpr char kMessageKeyUniversalAppId[] = "universalAppId";
88 static constexpr char kMessageKeyUserEq[] = "userEq";
89 static constexpr char kMessageKeyVolume[] = "volume";
92 static constexpr char kMessageValueAttenuation[] = "attenuation";
93 static constexpr char kMessageValueBadParameter[] = "BAD_PARAMETER";
94 static constexpr char kMessageValueInvalidSessionId[] = "INVALID_SESSION_ID";
95 static constexpr char kMessageValueInvalidCommand[] = "INVALID_COMMAND";
96 static constexpr char kMessageValueNotFound[] = "NOT_FOUND";
97 static constexpr char kMessageValueSystemError[] = "SYSTEM_ERROR";
164 inline constexpr const char* CastMessageTypeToString(CastMessageType type) { in CastMessageTypeToString()