HomeSort by relevance Sort by last modified time
    Searched defs:sid (Results 126 - 150 of 197) sorted by null

1 2 3 4 56 7 8

  /bionic/libc/kernel/common/linux/
if_pppox.h 35 sid_t sid; member in struct:pppoe_addr
116 __be16 sid; member in struct:pppoe_hdr
  /external/chromium/chrome/common/net/gaia/
gaia_auth_fetcher.cc 43 "SID=%s&"
178 const std::string& sid,
181 std::string encoded_sid = UrlEncodeString(sid);
205 std::string* sid,
216 if (i->first == "SID") {
217 sid->assign(i->second);
282 void GaiaAuthFetcher::StartIssueAuthToken(const std::string& sid,
290 request_body_ = MakeIssueAuthTokenBody(sid, lsid, service);
371 std::string sid; local
374 ParseClientLoginResponse(data, &sid, &lsid, &token)
    [all...]
gaia_authenticator.h 16 // // Do something with: gaia_auth.auth_token(), or gaia_auth.sid(),
141 std::string sid; member in struct:gaia::GaiaAuthenticator::AuthResults
215 // Retrieve SID cookie. For details, see the Google Accounts documentation.
216 inline std::string sid() const { function in class:gaia::GaiaAuthenticator
218 return auth_results_.sid;
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
sessionmessages.h 83 const std::string& sid, const std::string& initiator) :
84 protocol(protocol), type(type), sid(sid), initiator(initiator),
92 std::string sid; // session id member in struct:cricket::SessionMessage
  /external/chromium_org/chrome/browser/net/gaia/
gaia_oauth_fetcher.cc 168 std::string* sid,
178 if (i->first == "SID") {
179 *sid = i->second;
443 std::string sid; local
446 ParseOAuthLoginResponse(data, &sid, &lsid, &auth);
447 if (!sid.empty() && !lsid.empty() && !auth.empty()) {
448 consumer_->OnOAuthLoginSuccess(sid, lsid, auth);
  /external/chromium_org/chrome/browser/signin/
token_service.cc 158 SaveAuthTokenToDB(GaiaConstants::kGaiaSid, credentials.sid);
165 // Notify AboutSigninInternals that a new lsid and sid are available.
167 signin_internals_util::SID, credentials.sid));
223 return !credentials_.lsid.empty() && !credentials_.sid.empty();
232 credentials_.sid, credentials_.lsid, kServices[i]);
404 if (credentials_.lsid.empty() && credentials_.sid.empty()) {
405 // Look for GAIA SID and LSID tokens. If we have both, and the current
408 std::string sid; local
414 sid = db_tokens.find(GaiaConstants::kGaiaSid)->second
    [all...]
  /external/chromium_org/net/third_party/nss/ssl/
sslinfo.c 28 sslSessionID * sid; local
54 sid = ss->sec.ci.sid;
74 if (sid) {
75 inf.creationTime = sid->creationTime;
76 inf.lastAccessTime = sid->lastAccessTime;
77 inf.expirationTime = sid->expirationTime;
80 memcpy(inf.sessionID, sid->u.ssl2.sessionID,
83 unsigned int sidLen = sid->u.ssl3.sessionIDLength;
86 memcpy(inf.sessionID, sid->u.ssl3.sessionID, sidLen)
    [all...]
sslsecur.c 246 ** For SSLv3, flushes SID cache entry (if requested),
959 if (sec->ci.sid != NULL) {
960 ssl_FreeSID(sec->ci.sid);
1404 sslSessionID * sid = ss->sec.ci.sid; local
    [all...]
  /external/chromium_org/remoting/protocol/
jingle_messages.cc 148 sid(sid_value),
183 sid = jingle_tag->Attr(QName(kEmptyNamespace, "sid"));
184 if (sid.empty()) {
185 *error = "sid attribute is missing";
277 jingle_tag->AddAttr(QName(kEmptyNamespace, "sid"), sid); local
389 error_text = "Invalid SID";
jingle_messages.h 72 std::string sid; member in struct:remoting::protocol::JingleMessage
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
sessionmessages.h 79 const std::string& sid, const std::string& initiator) :
80 protocol(protocol), type(type), sid(sid), initiator(initiator),
88 std::string sid; // session id member in struct:cricket::SessionMessage
  /external/freetype/src/cff/
cffdrivr.c 234 FT_UShort sid; local
248 /* first, locate the sid in the charset table */
249 sid = font->charset.sids[glyph_index];
252 gname = cff_index_get_sid_string( font, sid );
272 FT_UShort sid; local
285 sid = charset->sids[i];
287 if ( sid > 390 )
288 name = cff_index_get_string( cff, sid - 391 );
290 name = (FT_String *)psnames->adobe_std_strings( sid );
  /external/iptables/extensions/
libxt_owner.c 33 pid_t sid; member in struct:ipt_owner_info
42 pid_t sid; member in struct:ip6t_owner_info
68 "[!] --sid-owner sessionid Match local SID\n"
70 "NOTE: PID, SID and command matching are broken on SMP\n");
80 "[!] --sid-owner sessionid Match local SID\n"
81 "NOTE: PID and SID matching are broken on SMP\n");
102 {.name = "sid-owner", .id = O_SESSION, .type = XTTYPE_UINT32,
103 .flags = XTOPT_INVERT | XTOPT_PUT, XTOPT_POINTER(s, sid),
    [all...]
  /external/linux-tools-perf/util/
evlist.c 29 #define SID(e, x, y) xyarray__entry(e->sample_id, x, y)
121 struct perf_sample_id *sid = SID(evsel, cpu, thread); local
123 sid->id = id;
124 sid->evsel = evsel;
125 hash = hash_64(sid->id, PERF_EVLIST__HLIST_BITS);
126 hlist_add_head(&sid->node, &evlist->heads[hash]);
160 struct perf_sample_id *sid; local
169 hlist_for_each_entry(sid, pos, head, node)
170 if (sid->id == id
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_ikev2.c 481 u8 *sid; local
489 sid = os_malloc(sid_len);
490 if (sid) {
492 sid[offset] = EAP_TYPE_IKEV2;
494 os_memcpy(sid + offset, data->ikev2.i_nonce,
497 os_memcpy(sid + offset, data->ikev2.r_nonce,
501 sid, sid_len);
504 return sid;
eap_gpsk.c 729 u8 *sid; local
734 sid = os_malloc(data->id_len);
735 if (sid == NULL)
737 os_memcpy(sid, data->session_id, data->id_len);
740 return sid;
  /external/wpa_supplicant_8/src/wps/
wps_er.h 62 u8 sid[WPS_UUID_LEN]; member in struct:wps_er_ap
  /hardware/qcom/audio/legacy/alsa_sound/
ALSAMixer.cpp 167 snd_mixer_selem_id_t *sid; local
168 snd_mixer_selem_id_alloca(&sid);
187 snd_mixer_selem_get_id(elem, sid);
190 const char *elementName = snd_mixer_selem_id_get_name(sid);
224 snd_mixer_selem_get_id(elem, sid);
227 const char *elementName = snd_mixer_selem_id_get_name(sid);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
if_pppox.h 38 sid_t sid; /* Session identifier */ member in struct:pppoe_addr
114 __be16 sid; member in struct:pppoe_hdr
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
if_pppox.h 38 sid_t sid; /* Session identifier */ member in struct:pppoe_addr
114 __be16 sid; member in struct:pppoe_hdr
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
if_pppox.h 38 sid_t sid; /* Session identifier */ member in struct:pppoe_addr
114 __be16 sid; member in struct:pppoe_hdr
  /external/chromium/chrome/browser/chromeos/
audio_mixer_alsa.cc 433 snd_mixer_selem_id_t* sid; local
436 // warning: the address of 'sid' will always evaluate as 'true'.
437 if (snd_mixer_selem_id_malloc(&sid))
440 snd_mixer_selem_id_set_index(sid, 0);
441 snd_mixer_selem_id_set_name(sid, element_name);
442 snd_mixer_elem_t* elem = snd_mixer_find_selem(handle, sid);
445 << snd_mixer_selem_id_get_name(sid);
448 snd_mixer_selem_id_free(sid);
  /external/chromium_org/third_party/freetype/src/cff/
cffload.c 623 FT_UInt sid )
626 if ( sid == 0xFFFFU )
630 if ( sid > 390 )
631 return cff_index_get_string( font, sid - 391 );
638 return (FT_String *)font->psnames->adobe_std_strings( sid );
914 /* Read the first glyph sid of the range. */
933 FT_ERROR(( "cff_charset_load: invalid SID range trimmed"
1075 /* Zero out the code to gid/sid mappings. */
1092 /* This gives us both a code to GID and a code to SID mapping. */
1132 /* Assign code to SID mapping. *
1262 FT_UInt sid = encoding->sids[j]; local
    [all...]
  /external/chromium_org/third_party/ots/src/
cff.cc 496 // SID
840 uint16_t sid = 0; local
841 if (!table.ReadU16(&sid)) {
844 if (!have_ros && (sid > sid_max)) {
855 uint16_t sid = 0; local
856 if (!table.ReadU16(&sid)) {
859 if (!have_ros && (sid > sid_max)) {
  /hardware/ti/omap4xxx/security/tf_daemon/
delegation_client.c 1040 TRACE_INFO("INSTRUCTION: ID=0x%x pid=%d sid=%d woff=%d err=%d", (nInstructionID & 0x0F), nPartitionID, nSectorID, nWorkspaceOffset, nError);
1059 TRACE_INFO("INSTRUCTION: ID=0x%x pid=%d sid=%d woff=%d err=%d", (nInstructionID & 0x0F), nPartitionID, nSectorID, nWorkspaceOffset, nError);
1327 pid_t pid, sid; local
    [all...]

Completed in 2863 milliseconds

1 2 3 4 56 7 8