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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/net/third_party/nss/ssl/
sslnonce.c 162 * If the unreferenced sid is not in the cache, Free sid and its contents.
165 ssl_DestroySID(sslSessionID *sid)
168 SSL_TRC(8, ("SSL: destroy sid: sid=0x%x cached=%d", sid, sid->cached));
169 PORT_Assert((sid->references == 0));
171 if (sid->cached == in_client_cache)
174 if (sid->version < SSL_LIBRARY_VERSION_3_0)
250 sslSessionID * sid; local
383 sslSessionID *sid; local
    [all...]
  /external/chromium_org/sandbox/win/src/
acl.h 11 #include "sandbox/win/src/sid.h"
19 // Appends an ACE represented by |sid| and |access| to |old_dacl|. If the
22 bool AddSidToDacl(const Sid& sid, ACL* old_dacl, ACCESS_MASK access,
25 // Adds and ACE represented by |sid| and |access| to the default dacl present
27 bool AddSidToDefaultDacl(HANDLE token, const Sid& sid, ACCESS_MASK access);
29 // Adds an ACE represented by the user sid and |access| to the default dacl
35 bool AddKnownSidToKernelObject(HANDLE object, const Sid& sid,
    [all...]
app_container.h 52 // Creates a new AppContainer on the system. |sid| is the identifier of the new
56 ResultCode CreateAppContainer(const string16& sid, const string16& name);
60 ResultCode DeleteAppContainer(const string16& sid);
62 // Retrieves the name associated with the provided AppContainer sid. Returns an
64 string16 LookupAppContainer(const string16& sid);
sid.h 13 class Sid {
15 // Constructors initializing the object with the SID passed.
17 Sid(const SID *sid);
18 Sid(WELL_KNOWN_SID_TYPE type);
21 const SID *GetPSID() const;
sid.cc 5 #include "sandbox/win/src/sid.h"
11 Sid::Sid(const SID *sid) {
12 ::CopySid(SECURITY_MAX_SID_SIZE, sid_, const_cast<SID*>(sid));
15 Sid::Sid(WELL_KNOWN_SID_TYPE type) {
22 const SID *Sid::GetPSID() const
    [all...]
app_container.cc 17 // Converts the passed in sid string to a PSID that must be relased with
19 PSID ConvertSid(const string16& sid) {
21 if (!ConvertStringSidToSid(sid.c_str(), &local_sid))
36 LocalFree(attributes_[i].Sid);
51 sid_and_attributes.Sid = ConvertSid(capabilities[i]);
52 if (!sid_and_attributes.Sid)
86 ResultCode CreateAppContainer(const string16& sid, const string16& name) {
88 if (!ConvertStringSidToSid(sid.c_str(), &local_sid))
91 typedef HRESULT (WINAPI* AppContainerRegisterSidPtr)(PSID sid,
114 ResultCode DeleteAppContainer(const string16& sid) {
    [all...]
  /external/libsepol/src/
sidtab.c 7 * Implementation of the SID table type.
19 #define SIDTAB_HASH(sid) \
20 (sid & SIDTAB_HASH_MASK)
42 int sepol_sidtab_insert(sidtab_t * s, sepol_security_id_t sid,
51 hvalue = SIDTAB_HASH(sid);
54 while (cur != NULL && sid > cur->sid) {
59 if (cur && sid == cur->sid) {
67 newnode->sid = sid
228 sepol_security_id_t sid; local
    [all...]
  /external/chromium_org/remoting/host/win/
com_security.h 10 // 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/chrome/common/net/gaia/
gaia_auth_consumer.cc 16 : sid(new_sid),
26 return sid == b.sid &&
  /external/libsepol/tests/policies/test-expander/
base-base-only.conf 4 sid kernel
41 sid kernel gen_context(myuser_u:myrole_r:mytype_t, s0)
  /external/chromium_org/rlz/win/lib/
machine_id_win.cc 41 bool GetComputerSid(const wchar_t* account_name, SID* sid, DWORD sid_size) {
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) {
74 if (ConvertSidToStringSidW(sid, &sid_buffer)) {
79 SID_IDENTIFIER_AUTHORITY* sia = ::GetSidIdentifierAuthority(sid);
96 int sub_auth_count = *::GetSidSubAuthorityCount(sid);
114 SID* sid = reinterpret_cast<SID*>(sid_buffer); local
    [all...]
machine_deal.h 27 const wchar_t* sid = NULL);
  /external/chromium_org/third_party/mesa/src/src/gallium/winsys/svga/drm/
vmw_surface.h 52 uint32_t sid; member in struct:vmw_svga_winsys_surface
63 assert(!surf || surf->sid != SVGA3D_INVALID_ID);
vmw_surface.c 51 vmw_ioctl_surface_destroy(dst->screen, dst->sid);
55 dst->sid = SVGA3D_INVALID_ID;
  /external/mesa3d/src/gallium/winsys/svga/drm/
vmw_surface.h 52 uint32_t sid; member in struct:vmw_svga_winsys_surface
63 assert(!surf || surf->sid != SVGA3D_INVALID_ID);
vmw_surface.c 51 vmw_ioctl_surface_destroy(dst->screen, dst->sid);
55 dst->sid = SVGA3D_INVALID_ID;
  /external/smack/src/org/jivesoftware/smackx/bytestreams/ibb/provider/
CloseIQProvider.java 29 String sid = parser.getAttributeValue("", "sid"); local
30 return new Close(sid);
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
MediaSessionManager.java 48 public MediaQueueItem enqueue(String sid, Uri uri, PendingIntent receiver) {
50 if (sid != null && !sid.equals(mSessionId)) {
51 Log.d(TAG, "invalid session id, mSessionId="+mSessionId+", sid="+sid);
56 if (sid == null) {
75 public MediaQueueItem remove(String sid, String iid) {
76 if (sid == null || !sid.equals(mSessionId)) {
88 public MediaQueueItem seek(String sid, String iid, long pos)
    [all...]
  /external/libsepol/include/sepol/policydb/
sidtab.h 8 * of security context structures indexed by SID value.
17 sepol_security_id_t sid; /* security identifier */ member in struct:sidtab_node
33 unsigned int next_sid; /* next SID to allocate */
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/
SignerInfo.java 22 private SignerIdentifier sid; field in class:SignerInfo
46 SignerIdentifier sid,
53 if (sid.isTagged())
62 this.sid = sid;
71 SignerIdentifier sid,
78 if (sid.isTagged())
87 this.sid = sid;
104 sid = SignerIdentifier.getInstance(e.nextElement())
    [all...]
  /bionic/libc/kernel/common/linux/netfilter_ipv4/
ipt_owner.h 32 pid_t sid; member in struct:ipt_owner_info
  /bionic/libc/kernel/common/linux/netfilter_ipv6/
ip6t_owner.h 31 pid_t sid; member in struct:ip6t_owner_info
  /development/ndk/platforms/android-3/include/linux/netfilter_ipv4/
ipt_owner.h 25 pid_t sid; member in struct:ipt_owner_info
  /development/ndk/platforms/android-3/include/linux/netfilter_ipv6/
ip6t_owner.h 24 pid_t sid; member in struct:ip6t_owner_info
  /external/kernel-headers/original/linux/netfilter_ipv4/
ipt_owner.h 15 pid_t sid; member in struct:ipt_owner_info

Completed in 405 milliseconds

1 2 3 4 5 6 7 8 91011>>