HomeSort by relevance Sort by last modified time
    Searched refs:systemCode (Results 1 - 17 of 17) 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 [RuntimeEnabled=EncryptedMedia] readonly attribute unsigned long systemCode;
MediaKeyEvent.cpp 34 : systemCode(0)
51 , m_systemCode(initializer.systemCode)
MediaKeyEvent.idl 36 [InitializedByEventConstructor] readonly attribute unsigned short systemCode;
MediaKeyEvent.h 43 unsigned short systemCode;
69 unsigned short systemCode() const { return m_systemCode; }
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebContentDecryptionModuleResult.cpp 24 void WebContentDecryptionModuleResult::completeWithError(WebContentDecryptionModuleException exception, unsigned long systemCode, const WebString& errorMessage)
26 m_impl->completeWithError(exception, systemCode, errorMessage);
  /external/chromium_org/third_party/WebKit/Source/platform/
ContentDecryptionModuleResult.h 25 virtual void completeWithError(blink::WebContentDecryptionModuleException, unsigned long systemCode, const blink::WebString&) = 0;
  /external/chromium_org/third_party/WebKit/public/platform/
WebContentDecryptionModuleSession.h 56 virtual void error(MediaKeyErrorCode, unsigned long systemCode) = 0;
57 virtual void error(WebContentDecryptionModuleException, unsigned long systemCode, const WebString& message) = 0;
WebContentDecryptionModuleResult.h 58 BLINK_PLATFORM_EXPORT void completeWithError(WebContentDecryptionModuleException, unsigned long systemCode, const WebString& message);
WebMediaPlayerClient.h 87 virtual void keyError(const WebString& keySystem, const WebString& sessionId, MediaKeyErrorCode, unsigned short systemCode) = 0;
  /external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
MediaKeySession.h 122 virtual void error(MediaKeyErrorCode, unsigned long systemCode) OVERRIDE;
123 virtual void error(blink::WebContentDecryptionModuleException, unsigned long systemCode, const blink::WebString& errorMessage) OVERRIDE;
MediaKeySession.cpp 220 void MediaKeySession::error(MediaKeyErrorCode errorCode, unsigned long systemCode)
222 WTF_LOG(Media, "MediaKeySession::error: errorCode=%d, systemCode=%lu", errorCode, systemCode);
236 // systemCode = a Key System-specific value, if provided, and 0 otherwise
238 m_error = MediaKeyError::create(mediaKeyErrorCode, systemCode);
246 void MediaKeySession::error(blink::WebContentDecryptionModuleException exception, unsigned long systemCode, const blink::WebString& errorMessage)
248 WTF_LOG(Media, "MediaKeySession::error: exception=%d, systemCode=%lu", exception, systemCode);
264 error(errorCode, systemCode);
HTMLMediaElementEncryptedMedia.cpp 259 void HTMLMediaElementEncryptedMedia::keyError(HTMLMediaElement& element, const String& keySystem, const String& sessionId, blink::WebMediaPlayerClient::MediaKeyErrorCode errorCode, unsigned short systemCode)
261 WTF_LOG(Media, "HTMLMediaElementEncryptedMedia::mediaPlayerKeyError: sessionID=%s, errorCode=%d, systemCode=%d", sessionId.utf8().data(), errorCode, systemCode);
289 initializer.systemCode = systemCode;
HTMLMediaElementEncryptedMedia.h 43 static void keyError(HTMLMediaElement&, const String& keySystem, const String& sessionId, blink::WebMediaPlayerClient::MediaKeyErrorCode, unsigned short systemCode);
  /external/chromium_org/third_party/WebKit/Source/web/
WebMediaPlayerClientImpl.h 83 virtual void keyError(const WebString& keySystem, const WebString& sessionId, MediaKeyErrorCode, unsigned short systemCode) OVERRIDE;
WebMediaPlayerClientImpl.cpp 129 void WebMediaPlayerClientImpl::keyError(const WebString& keySystem, const WebString& sessionId, MediaKeyErrorCode errorCode, unsigned short systemCode)
131 HTMLMediaElementEncryptedMedia::keyError(mediaElement(), keySystem, sessionId, errorCode, systemCode);
  /packages/apps/Nfc/nci/jni/
NfcTag.cpp 756 UINT16 systemCode = *(activationData.params.t3t.p_system_codes);
757 result [8] = (UINT8) (systemCode >> 8);
758 result [9] = (UINT8) systemCode;
    [all...]

Completed in 430 milliseconds