Home
last modified time | relevance | path

Searched refs:co_flags (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/sys/netsmb/
H A Dsmb_dev.c248 if (on && (vcp->obj.co_flags & SMBV_PERMANENT) == 0) { in nsmb_dev_ioctl()
249 vcp->obj.co_flags |= SMBV_PERMANENT; in nsmb_dev_ioctl()
251 } else if (!on && (vcp->obj.co_flags & SMBV_PERMANENT)) { in nsmb_dev_ioctl()
252 vcp->obj.co_flags &= ~SMBV_PERMANENT; in nsmb_dev_ioctl()
268 if (on && (ssp->obj.co_flags & SMBS_PERMANENT) == 0) { in nsmb_dev_ioctl()
269 ssp->obj.co_flags |= SMBS_PERMANENT; in nsmb_dev_ioctl()
271 } else if (!on && (ssp->obj.co_flags & SMBS_PERMANENT)) { in nsmb_dev_ioctl()
272 ssp->obj.co_flags &= ~SMBS_PERMANENT; in nsmb_dev_ioctl()
H A Dsmb_conn.c139 if ((vcp->obj.co_flags & SMBV_PRIVATE) || in smb_sm_lookupint()
254 cp->co_flags = 0; in smb_co_done()
303 cp->co_flags |= SMBO_GONE; in smb_co_rele()
330 cp->co_flags |= SMBO_GONE; in smb_co_put()
336 if ((cp->co_flags & SMBO_GONE) == 0) in smb_co_put()
347 if (cp->co_flags & SMBO_GONE) in smb_co_lock()
417 vcp->obj.co_flags = vcspec->flags & (SMBV_PRIVATE | SMBV_SINGLESHARE); in smb_vc_create()
714 vip->flags = vcp->obj.co_flags; in smb_vc_getinfo()
913 sip->flags = ssp->obj.co_flags; in smb_share_getinfo()
H A Dsmb_smb.c135 vcp->obj.co_flags &= ~(SMBV_ENCRYPT); in smb_smb_negotiate()
198 vcp->obj.co_flags |= SMBV_ENCRYPT; in smb_smb_negotiate()
207 vcp->obj.co_flags |= SMBV_UNICODE; in smb_smb_negotiate()
213 vcp->obj.co_flags |= SMBV_WIN95; in smb_smb_negotiate()
248 vcp->obj.co_flags |= SMBV_ENCRYPT; in smb_smb_negotiate()
305 if (vcp->obj.co_flags & SMBV_UNICODE) in smb_smb_ssnsetup()
583 if (vcp->obj.co_flags & SMBV_UNICODE) { in smb_smb_treeconnect()
H A Dsmb_conn.h199 int co_flags; member
273 #define vc_flags obj.co_flags
304 #define ss_flags obj.co_flags
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp899 bool has_varargs = !!(code->co_flags & CO_VARARGS); in GetArgInfo()