Searched refs:sid (Results 1 - 25 of 213) sorted by relevance

123456789

/external/chromium_org/net/third_party/nss/ssl/
H A Dsslnonce.c110 * If the unreferenced sid is not in the cache, Free sid and its contents.
113 ssl_DestroySID(sslSessionID *sid) argument
116 SSL_TRC(8, ("SSL: destroy sid: sid=0x%x cached=%d", sid, sid->cached));
117 PORT_Assert(sid->references == 0);
118 PORT_Assert(sid->cached != in_client_cache);
120 if (sid
174 ssl_FreeLockedSID(sslSessionID *sid) argument
189 ssl_FreeSID(sslSessionID *sid) argument
209 sslSessionID * sid; local
266 CacheSID(sslSessionID *sid) argument
344 sslSessionID *sid; local
439 ssl3_SetSIDSessionTicket(sslSessionID *sid, NewSessionTicket *newSessionTicket) argument
[all...]
/external/libsepol/src/
H A Dsidtab.c19 #define SIDTAB_HASH(sid) \
20 (sid & SIDTAB_HASH_MASK)
42 int sepol_sidtab_insert(sidtab_t * s, sepol_security_id_t sid, argument
51 hvalue = SIDTAB_HASH(sid);
54 while (cur != NULL && sid > cur->sid) {
59 if (cur && sid == cur->sid) {
67 newnode->sid = sid;
87 sepol_sidtab_remove(sidtab_t * s, sepol_security_id_t sid) argument
118 sepol_sidtab_search(sidtab_t * s, sepol_security_id_t sid) argument
145 sepol_sidtab_map(sidtab_t * s, int (*apply) (sepol_security_id_t sid, context_struct_t * context, void *args), void *args) argument
168 sepol_sidtab_map_remove_on_error(sidtab_t * s, int (*apply) (sepol_security_id_t sid, context_struct_t * context, void *args), void *args) argument
228 sepol_security_id_t sid; local
[all...]
/external/chromium_org/remoting/host/win/
H A Dcom_security.h10 // Concatenates ACE type, permissions and sid given as SDDL strings into an ACE
12 #define SDDL_ACE(type, permissions, sid) \
13 L"(" type L";;" permissions L";;;" sid L")"
/external/chromium_org/sandbox/win/src/
H A Dacl.h12 #include "sandbox/win/src/sid.h"
21 // Appends an ACE represented by |sid|, |access_mode|, and |access| to
24 bool AddSidToDacl(const Sid& sid, ACL* old_dacl, ACCESS_MODE access_mode,
27 // Adds and ACE represented by |sid| and |access| to the default dacl present
29 bool AddSidToDefaultDacl(HANDLE token, const Sid& sid, ACCESS_MASK access);
31 // Adds an ACE represented by the user sid and |access| to the default dacl
38 const Sid& sid, ACCESS_MODE access_mode,
H A Dsid.cc5 #include "sandbox/win/src/sid.h"
11 Sid::Sid(const SID *sid) { argument
12 ::CopySid(SECURITY_MAX_SID_SIZE, sid_, const_cast<SID*>(sid));
H A Dapp_container.h52 // Creates a new AppContainer on the system. |sid| is the identifier of the new
56 ResultCode CreateAppContainer(const base::string16& sid,
61 ResultCode DeleteAppContainer(const base::string16& sid);
63 // Retrieves the name associated with the provided AppContainer sid. Returns an
65 base::string16 LookupAppContainer(const base::string16& sid);
H A Dapp_container.cc17 // Converts the passed in sid string to a PSID that must be relased with
19 PSID ConvertSid(const base::string16& sid) { argument
21 if (!ConvertStringSidToSid(sid.c_str(), &local_sid))
97 ResultCode CreateAppContainer(const base::string16& sid, argument
100 if (!ConvertStringSidToSid(sid.c_str(), &local_sid))
103 typedef HRESULT (WINAPI* AppContainerRegisterSidPtr)(PSID sid,
125 ResultCode DeleteAppContainer(const base::string16& sid) { argument
127 if (!ConvertStringSidToSid(sid.c_str(), &local_sid))
130 typedef HRESULT (WINAPI* AppContainerUnregisterSidPtr)(PSID sid);
150 base::string16 LookupAppContainer(const base::string16& sid) { argument
[all...]
H A Dsid.h17 Sid(const SID *sid);
H A Dacl.cc40 bool AddSidToDacl(const Sid& sid, ACL* old_dacl, ACCESS_MODE access_mode, argument
51 const_cast<SID*>(sid.GetPSID()));
59 bool AddSidToDefaultDacl(HANDLE token, const Sid& sid, ACCESS_MASK access) { argument
68 if (!AddSidToDacl(sid, default_dacl->DefaultDacl, GRANT_ACCESS, access,
96 const Sid& sid, ACCESS_MODE access_mode,
107 if (!AddSidToDacl(sid.GetPSID(), old_dacl, access_mode, access, &new_dacl)) {
95 AddKnownSidToObject(HANDLE object, SE_OBJECT_TYPE object_type, const Sid& sid, ACCESS_MODE access_mode, ACCESS_MASK access) argument
H A Dsandbox.h96 // Install the AppContainer with the specified sid an name. Returns ALL_OK if
98 virtual ResultCode InstallAppContainer(const wchar_t* sid,
101 // Removes from the system the AppContainer with the specified sid.
103 virtual ResultCode UninstallAppContainer(const wchar_t* sid) = 0;
/external/chromium_org/rlz/win/lib/
H A Dmachine_id_win.cc41 bool GetComputerSid(const wchar_t* account_name, SID* sid, DWORD sid_size) { argument
49 BOOL success = ::LookupAccountNameW(NULL, account_name, sid,
54 // one or both of sid and szDomain was too small. Check for that
62 success = ::LookupAccountNameW(NULL, account_name, sid, &sid_dword_size,
70 std::wstring ConvertSidToString(SID* sid) { argument
74 if (ConvertSidToStringSidW(sid, &sid_buffer)) {
79 SID_IDENTIFIER_AUTHORITY* sia = ::GetSidIdentifierAuthority(sid);
96 int sub_auth_count = *::GetSidSubAuthorityCount(sid);
98 base::StringAppendF(&sid_string, L"-%lu", *::GetSidSubAuthority(sid, i));
114 SID* sid local
[all...]
H A Dmachine_deal.h27 const wchar_t* sid = NULL);
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/svga/drm/
H A Dvmw_surface.h52 uint32_t sid; member in struct:vmw_svga_winsys_surface
63 assert(!surf || surf->sid != SVGA3D_INVALID_ID);
H A Dvmw_surface.c51 vmw_ioctl_surface_destroy(dst->screen, dst->sid);
55 dst->sid = SVGA3D_INVALID_ID;
/external/mesa3d/src/gallium/winsys/svga/drm/
H A Dvmw_surface.h52 uint32_t sid; member in struct:vmw_svga_winsys_surface
63 assert(!surf || surf->sid != SVGA3D_INVALID_ID);
H A Dvmw_surface.c51 vmw_ioctl_surface_destroy(dst->screen, dst->sid);
55 dst->sid = SVGA3D_INVALID_ID;
/external/smack/src/org/jivesoftware/smackx/bytestreams/ibb/provider/
H A DCloseIQProvider.java29 String sid = parser.getAttributeValue("", "sid");
30 return new Close(sid);
/external/libsepol/include/sepol/policydb/
H A Dsidtab.h17 sepol_security_id_t sid; /* security identifier */ member in struct:sidtab_node
40 sepol_security_id_t sid,
44 sepol_security_id_t sid);
47 int (*apply) (sepol_security_id_t sid,
60 sepol_security_id_t * sid); /* OUT */
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
H A DSignerInfo.java26 * sid SignerIdentifier,
46 * sid SignerIdentifier,
79 private SignerIdentifier sid; field in class:SignerInfo
117 * @param sid
125 SignerIdentifier sid,
132 if (sid.isTagged())
141 this.sid = sid;
151 * @param sid
159 SignerIdentifier sid,
124 SignerInfo( SignerIdentifier sid, AlgorithmIdentifier digAlgorithm, ASN1Set authenticatedAttributes, AlgorithmIdentifier digEncryptionAlgorithm, ASN1OctetString encryptedDigest, ASN1Set unauthenticatedAttributes) argument
158 SignerInfo( SignerIdentifier sid, AlgorithmIdentifier digAlgorithm, Attributes authenticatedAttributes, AlgorithmIdentifier digEncryptionAlgorithm, ASN1OctetString encryptedDigest, Attributes unauthenticatedAttributes) argument
[all...]
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_l2tp.h14 __u32 sid; /* session id */ member in struct:xt_l2tp_info
/external/libsepol/tests/policies/test-expander/
H A Dbase-base-only.conf4 sid kernel
42 sid kernel gen_context(myuser_u:myrole_r:mytype_t, s0)
/external/libselinux/include/selinux/
H A Davc.h31 * @sid: input SID
35 * @sid in the memory referenced by @ctx. The caller is expected to
40 int avc_sid_to_context(security_id_t sid, char ** ctx);
41 int avc_sid_to_context_raw(security_id_t sid, char ** ctx);
46 * @sid: pointer to SID reference
51 * to the SID structure into the memory referenced by @sid,
54 int avc_context_to_sid(const char * ctx, security_id_t * sid);
55 int avc_context_to_sid_raw(const char * ctx, security_id_t * sid);
59 * @sid: SID reference
61 * Increment the reference counter for @sid, indicatin
[all...]
/external/qemu/distrib/libselinux/include/selinux/
H A Davc.h31 * @sid: input SID
35 * @sid in the memory referenced by @ctx. The caller is expected to
40 int avc_sid_to_context(security_id_t sid, char ** ctx);
41 int avc_sid_to_context_raw(security_id_t sid, char ** ctx);
46 * @sid: pointer to SID reference
51 * to the SID structure into the memory referenced by @sid,
54 int avc_context_to_sid(const char * ctx, security_id_t * sid);
55 int avc_context_to_sid_raw(const char * ctx, security_id_t * sid);
59 * @sid: SID reference
61 * Increment the reference counter for @sid, indicatin
[all...]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
H A Dfakedatachannelprovider.h74 virtual void AddSctpDataStream(uint32 sid) OVERRIDE {
78 send_ssrcs_.insert(sid);
79 recv_ssrcs_.insert(sid);
82 virtual void RemoveSctpDataStream(uint32 sid) OVERRIDE {
83 send_ssrcs_.erase(sid);
84 recv_ssrcs_.erase(sid);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dr600_shader.h32 int sid; member in struct:r600_shader_io

Completed in 1783 milliseconds

123456789