HomeSort by relevance Sort by last modified time
    Searched refs:secure (Results 26 - 50 of 130) sorted by null

12 3 4 5 6

  /frameworks/native/include/media/hardware/
CryptoAPI.h 61 // If this method returns false, a non-secure decoder will be used to
63 // to support insecure decryption of the data (secure = false) for
76 bool secure,
  /development/samples/BluetoothChat/src/com/example/android/BluetoothChat/
BluetoothChatService.java 127 * @param secure Socket Security type - Secure (true) , Insecure (false)
129 public synchronized void connect(BluetoothDevice device, boolean secure) {
141 mConnectThread = new ConnectThread(device, secure);
270 public AcceptThread(boolean secure) {
272 mSocketType = secure ? "Secure":"Insecure";
276 if (secure) {
355 public ConnectThread(BluetoothDevice device, boolean secure) {
358 mSocketType = secure ? "Secure" : "Insecure"
    [all...]
  /frameworks/base/core/java/android/view/
Surface.java 106 * Surface creation flag: The surface contains secure content, special
113 public static final int SECURE = 0x00000080;
261 private static native IBinder nativeCreateDisplay(String name, boolean secure);
600 public static IBinder createDisplay(String name, boolean secure) {
604 return nativeCreateDisplay(name, secure);
761 public boolean secure; field in class:Surface.PhysicalDisplayInfo
783 && secure == other.secure;
798 secure = other.secure;
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/
ProxySelectorRoutePlanner.java 160 // a layered scheme implies a secure connection
161 final boolean secure = schm.isLayered();
164 route = new HttpRoute(target, local, secure);
166 route = new HttpRoute(target, local, proxy, secure);
  /external/webkit/Source/WebCore/platform/network/cf/
CookieJarCFNet.cpp 153 bool secure = url.protocolIs("https"); local
154 RetainPtr<CFArrayRef> cookiesCF(AdoptCF, CFHTTPCookieStorageCopyCookiesForURL(cookieStorage, urlCF.get(), secure));
167 bool secure = url.protocolIs("https"); local
168 RetainPtr<CFArrayRef> cookiesCF(AdoptCF, CFHTTPCookieStorageCopyCookiesForURL(cookieStorage, urlCF.get(), secure));
206 bool secure = CFHTTPCookieIsSecure(cookie); local
209 rawCookies.uncheckedAppend(Cookie(name, value, domain, path, expires, httpOnly, secure, session));
  /frameworks/av/media/libmediaplayerservice/
Crypto.cpp 145 bool secure,
164 secure, key, iv, mode, srcPtr, subSamples, numSubSamples, dstPtr,
  /external/nist-sip/java/javax/sip/address/
SipURI.java 10 void setSecure(boolean secure);
  /external/webkit/Source/WebCore/websockets/
WebSocketHandshake.h 61 bool secure() const;
  /external/chromium/third_party/libjingle/source/talk/examples/call/
call_main.cc 223 secure, "disable",
252 std::string secure = FLAG_secure; local
267 if (secure == "disable") {
269 } else if (secure == "enable") {
271 } else if (secure == "require") {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
ConnectionAccessServerActivity.java 109 boolean secure = false;
110 mChatService.start(secure);
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicClientCookie.java 232 * @return <code>true</code> if this cookie should only be sent over secure connections.
240 * Sets the secure attribute of the cookie.
243 * using a secure protocol (https). This should only be set when
244 * the cookie's originating server used a secure protocol to set the
247 * @param secure The value of the secure attribute
251 public void setSecure (boolean secure) {
252 isSecure = secure;
369 /** My secure flag. */
  /external/webkit/Source/WebCore/inspector/front-end/
HAREntry.js 170 secure: cookie.secure
  /external/webkit/Source/WebKit/efl/ewk/
ewk_cookies.cpp 116 c->secure = static_cast<Eina_Bool>(cookie->secure);
  /hardware/samsung_slsi/exynos5/libgscaler/
Android.mk 23 # to talk to secure side
  /hardware/ti/omap4xxx/
omap4.mk 24 libOMX.TI.DUCATI1.VIDEO.DECODER.secure \
  /frameworks/native/include/gui/
ISurfaceComposer.h 73 bool secure) = 0;
95 * This function will fail if there is a secure window on screen.
  /libcore/luni/src/main/java/java/net/
HttpCookie.java 38 * {@code Secure}. The {@link #getVersion() version} of cookies in this
76 RESERVED_NAMES.add("secure"); // Netscape RFC 2109 RFC 2965
143 * secure attribute. Secure cookies should not be sent in insecure (ie. non-HTTPS) requests.
341 } else if (name.equals("secure")) {
342 cookie.secure = true;
432 private boolean secure;
540 * Returns the {@code Secure} attribute.
543 return secure;
633 * Sets the {@code Secure} attribute of this cookie
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
isdn.h 130 int secure; /* Flag: Secure */ member in struct:__anon24234
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
isdn.h 130 int secure; /* Flag: Secure */ member in struct:__anon25824
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
isdn.h 130 int secure; /* Flag: Secure */ member in struct:__anon27336
  /external/chromium/chrome/browser/automation/
automation_util.cc 219 cookie_dict->SetBoolean("secure", cookie.IsSecure());
278 bool secure = false; local
299 if (cookie_dict->HasKey("secure") &&
300 !cookie_dict->GetBoolean("secure", &secure)) {
301 reply.SendError("optional 'secure' invalid");
322 base::Time::FromDoubleT(expiry), secure, http_only)); local
  /external/chromium/net/websockets/
websocket_handshake.cc 132 bool secure = is_secure(); local
134 if ((!secure &&
136 (secure &&
  /external/chromium/third_party/libjingle/source/talk/base/
httpcommon.h 183 inline uint16 HttpDefaultPort(bool secure) {
184 return secure ? HTTP_SECURE_PORT : HTTP_DEFAULT_PORT;
188 std::string HttpAddress(const SocketAddress& address, bool secure);
257 bool secure() const { return secure_; } function in class:talk_base::Url
  /external/chromium/third_party/libjingle/source/talk/session/phone/
mediasessionclient.cc 154 if (secure() != SEC_DISABLED) {
162 if (secure() == SEC_REQUIRED) {
187 if (secure() != SEC_DISABLED) {
195 if (secure() == SEC_REQUIRED) {
281 if (secure() != SEC_DISABLED) {
290 (audio_offer->crypto_required() || secure() == SEC_REQUIRED)) {
318 if (secure() != SEC_DISABLED) {
327 (video_offer->crypto_required() || secure() == SEC_REQUIRED)) {
    [all...]
  /external/webkit/Source/WebCore/platform/mac/
CookieJar.mm 185 bool secure = [cookie isSecure];
187 rawCookies.uncheckedAppend(Cookie(name, value, domain, path, expires, httpOnly, secure, session));

Completed in 811 milliseconds

12 3 4 5 6