HomeSort by relevance Sort by last modified time
    Searched refs:privacy (Results 1 - 25 of 31) sorted by null

1 2

  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
Privacy.java 44 * Privacy SIP header - RFC 3323.
50 public class Privacy
56 * Privacy type
58 private String privacy; field in class:Privacy
64 public Privacy() {
65 super(PRIVACY);
69 * Constructor given a privacy type
70 *@param privacy
72 public Privacy(String privacy)
    [all...]
PrivacyHeader.java 41 * Privacy Header RFC 3323.
45 * Privacy-hdr = "Privacy" HCOLON priv-value *(";" priv-value)
49 * Privacy: id
62 public final static String NAME = "Privacy";
66 * Set Privacy header value
67 * @param privacy -- privacy type to set.
69 public void setPrivacy(String privacy) throws ParseException;
72 * Get Privacy header valu
    [all...]
  /external/smack/src/org/jivesoftware/smack/provider/
PrivacyProvider.java 22 import org.jivesoftware.smack.packet.Privacy;
29 * The PrivacyProvider parses {@link Privacy} packets. {@link Privacy}
30 * Parses the <tt>query</tt> sub-document and creates an instance of {@link Privacy}.
42 Privacy privacy = new Privacy(); local
43 /* privacy.addExtension(PacketParserUtils.parsePacketExtension(parser
45 privacy.addExtension(new DefaultPacketExtension(parser.getName(), parser.getNamespace()));
53 privacy.setDeclineActiveList(true);
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/ims/
PrivacyParser.java 34 * Privacy header parser.
40 * Privacy-hdr = "Privacy" HCOLON priv-value *(";" priv-value)
52 import gov.nist.javax.sip.header.ims.Privacy;
84 this.headerName(TokenTypes.PRIVACY);
89 Privacy privacy = new Privacy(); local
90 privacy.setHeaderName(SIPHeaderNamesIms.PRIVACY);
    [all...]
  /external/apache-harmony/auth/src/test/java/common/org/ietf/jgss/
MessagePropTest.java 58 boolean privacy= mp.getPrivacy();
59 assertTrue(privacy);
65 boolean privacy= mp.getPrivacy();
66 assertTrue(privacy);
71 boolean privacy= mp.getPrivacy();
72 assertTrue(privacy);
78 boolean privacy= mp.getPrivacy();
79 assertTrue(!privacy);
  /external/chromium_org/chrome/browser/resources/
feedback.css 87 #privacy-note {
  /external/chromium_org/chrome/browser/ui/webui/options/
settings_app_browsertest.js 39 assertFalse(isVisible('privacy-section'));
  /external/smack/src/org/jivesoftware/smack/
PrivacyListManager.java 25 import org.jivesoftware.smack.packet.Privacy;
33 * <li>Retrieve privacy lists.
34 * <li>Add, remove, and edit privacy lists.
38 * Privacy Items can handle different kind of permission communications based on JID, group,
52 new PacketExtensionFilter("query", "jabber:iq:privacy"));
65 * Creates a new privacy manager to maintain the communication privacy. Note: no
67 * get or set the privacy communication.<p>
76 /** Answer the connection userJID that owns the privacy.
77 * @return the userJID that owns the privacy
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/cdma/sms/
CdmaSmsTest.java 273 assertEquals(bearerData.privacy, BearerData.PRIVACY_CONFIDENTIAL);
320 assertEquals(bearerData.privacy, BearerData.PRIVACY_CONFIDENTIAL);
    [all...]
  /external/chromium_org/chrome/browser/resources/safe_browsing/
malware_block_v2.css 84 #privacy-link {
  /external/wpa_supplicant_8/src/drivers/
driver_bsd.c 62 int prev_privacy; /* privacy state to restore on deinit */
979 wpa_driver_bsd_set_wpa_internal(void *priv, int wpa, int privacy)
983 wpa_printf(MSG_DEBUG, "%s: wpa=%d privacy=%d",
984 __FUNCTION__, wpa, privacy);
988 if (set80211param(priv, IEEE80211_IOC_PRIVACY, privacy) < 0)
1056 int privacy; local
1107 privacy = !(params->pairwise_suite == CIPHER_NONE &&
1111 wpa_printf(MSG_DEBUG, "%s: set PRIVACY %u", __func__, privacy);
1113 if (set80211param(drv, IEEE80211_IOC_PRIVACY, privacy) < 0
    [all...]
driver_test.c 58 int privacy; member in struct:test_driver_bss
582 if (bss->privacy) {
583 ret = snprintf(pos, end - pos, " PRIVACY");
1123 dbss->privacy = enabled;
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/preferences/allowThirdPartyCookies/
popup.js 6 var pref = chrome.privacy.websites.thirdPartyCookiesAllowed;
  /external/chromium_org/chrome/common/extensions/docs/examples/api/preferences/enableReferrer/
popup.js 6 var pref = chrome.privacy.websites.referrersEnabled;
  /external/bluetooth/bluedroid/stack/include/
gap_api.h 226 UINT8 privacy; member in union:__anon3772
786 ** has privacy enabled.
    [all...]
  /hardware/ril/include/telephony/
ril_cdma_sms.h 647 /* ---- Privacy ---- */
775 RIL_CDMA_SMS_Privacy privacy; member in struct:__anon33970
  /external/wpa_supplicant_8/src/ap/
ieee802_11.c 140 int privacy; local
146 privacy = hapd->conf->ssid.wep.keys_set;
151 privacy = 1;
154 privacy = 1;
165 privacy = policy != SECURITY_PLAINTEXT;
167 privacy = 0;
170 if (privacy)
    [all...]
beacon.c 744 params.privacy = hapd->conf->ssid.wep.keys_set || hapd->conf->wpa ||
  /external/wpa_supplicant_8/wpa_supplicant/
events.c 353 int privacy = 0; local
364 privacy = 1;
370 privacy = 1;
374 privacy = 1;
377 return privacy;
378 return !privacy;
838 wpa_dbg(wpa_s, MSG_DEBUG, " skip - privacy "
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/sms/
BearerData.java 111 * Supported privacy modes for CDMA SMS messages
120 public int privacy = PRIVACY_NOT_RESTRICTED; field in class:BearerData
416 builder.append(", privacy=" + (privacyIndicatorSet ? privacy : "unset"));
    [all...]
  /external/chromium_org/chrome/browser/resources/options/
browser_options.css 378 #privacy-explanation {
  /external/nist-sip/java/gov/nist/javax/sip/header/
HeaderFactoryImpl.java 1513 Privacy privacy = new Privacy(privacyType); local
    [all...]
  /external/bluetooth/bluedroid/stack/gap/
gap_ble.c 44 /* privacy flag readable and writable with encryption on */
318 UINT8_TO_STREAM(p, p_db_attr->attr_value.privacy);
395 if (!btm_cb.ble_ctr_cb.privacy)
635 check privacy enabled? set reconnect address
910 ** has privacy enabled.
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_handlers.c 3131 dbus_bool_t privacy; local
    [all...]
  /external/chromium/third_party/libjingle/source/talk/
main.scons 260 '-Wno-ctor-dtor-privacy',

Completed in 827 milliseconds

1 2