OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:systemCode
(Results
1 - 16
of
16
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/html/
MediaKeyError.h
47
static PassRefPtr<MediaKeyError> create(Code code, unsigned long
systemCode
= 0) { return adoptRef(new MediaKeyError(code,
systemCode
)); }
50
unsigned long
systemCode
() { return m_systemCode; }
53
explicit MediaKeyError(Code code, unsigned long
systemCode
) : m_code(code), m_systemCode(
systemCode
)
MediaKeyError.idl
36
[Conditional=ENCRYPTED_MEDIA_V2, EnabledAtRuntime=encryptedMedia] readonly attribute unsigned long
systemCode
;
MediaKeyEvent.cpp
35
:
systemCode
(0)
52
, m_systemCode(initializer.
systemCode
)
MediaKeyEvent.h
43
unsigned short
systemCode
;
68
unsigned short
systemCode
() const { return m_systemCode; }
MediaKeyEvent.idl
36
[InitializedByEventConstructor] readonly attribute unsigned short
systemCode
;
HTMLMediaElement.h
370
virtual void mediaPlayerKeyError(const String& keySystem, const String& sessionId, MediaPlayerClient::MediaKeyErrorCode, unsigned short
systemCode
) OVERRIDE;
HTMLMediaElement.cpp
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
ContentDecryptionModuleSession.cpp
79
void ContentDecryptionModuleSession::keyError(MediaKeyErrorCode errorCode, unsigned long
systemCode
)
81
m_client->keyError(static_cast<ContentDecryptionModuleSessionClient::MediaKeyErrorCode>(errorCode),
systemCode
);
ContentDecryptionModuleSession.h
55
virtual void keyError(MediaKeyErrorCode, unsigned long
systemCode
) = 0;
74
virtual void keyError(MediaKeyErrorCode, unsigned long
systemCode
) OVERRIDE;
/external/chromium_org/third_party/WebKit/public/platform/
WebContentDecryptionModuleSession.h
49
virtual void keyError(MediaKeyErrorCode, unsigned long
systemCode
) = 0;
/external/chromium_org/third_party/WebKit/public/web/
WebMediaPlayerClient.h
68
virtual void keyError(const WebString& keySystem, const WebString& sessionId, MediaKeyErrorCode, unsigned short
systemCode
) = 0;
/external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
MediaKeySession.cpp
138
unsigned long
systemCode
= 0;
158
void MediaKeySession::keyError(MediaKeyErrorCode errorCode, unsigned long
systemCode
)
172
//
systemCode
= a Key System-specific value, if provided, and 0 otherwise
174
m_error = MediaKeyError::create(mediaKeyErrorCode,
systemCode
);
MediaKeySession.h
89
virtual void keyError(MediaKeyErrorCode, unsigned long
systemCode
) OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/web/
WebMediaPlayerClientImpl.h
83
virtual void keyError(const WebString& keySystem, const WebString& sessionId, MediaKeyErrorCode, unsigned short
systemCode
);
WebMediaPlayerClientImpl.cpp
140
void WebMediaPlayerClientImpl::keyError(const WebString& keySystem, const WebString& sessionId, MediaKeyErrorCode errorCode, unsigned short
systemCode
)
142
m_client->mediaPlayerKeyError(keySystem, sessionId, static_cast<MediaPlayerClient::MediaKeyErrorCode>(errorCode),
systemCode
);
/packages/apps/Nfc/nci/jni/
NfcTag.cpp
733
UINT16
systemCode
= *(activationData.params.t3t.p_system_codes);
734
result [8] = (UINT8) (
systemCode
>> 8);
735
result [9] = (UINT8)
systemCode
;
[
all
...]
Completed in 345 milliseconds