/freebsd/sys/contrib/device-tree/Bindings/serial/ |
H A D | mrvl,pxa-ssp.txt | 1 Device tree bindings for Marvell PXA SSP ports 6 mrvl,pxa25x-ssp 8 mrvl,pxa27x-ssp 9 mrvl,pxa3xx-ssp 10 mvrl,pxa168-ssp 11 mrvl,pxa910-ssp 12 mrvl,ce4100-ssp 21 ssp0: ssp@41000000 { 22 compatible = "mrvl,pxa3xx-ssp"; 24 ssp-id = <1>; [all …]
|
/freebsd/sys/netsmb/ |
H A D | smb_conn.c | 159 vcspec->ssp = NULL; in smb_sm_lookupint() 162 &vcspec->ssp); in smb_sm_lookupint() 185 struct smb_share *ssp = NULL; in smb_sm_lookup() local 209 error = smb_share_create(vcp, shspec, scred, &ssp); in smb_sm_lookup() 212 error = smb_smb_treeconnect(ssp, scred); in smb_sm_lookup() 214 vcspec->ssp = ssp; in smb_sm_lookup() 216 smb_share_put(ssp, scred); in smb_sm_lookup() 614 smb_vc_cmpshare(struct smb_share *ssp, struct smb_sharespec *dp) in smb_vc_cmpshare() argument 618 if (strcmp(ssp->ss_name, dp->name) != 0) in smb_vc_cmpshare() 621 if (ssp->ss_uid != dp->owner) in smb_vc_cmpshare() [all …]
|
H A D | smb_dev.c | 144 struct smb_share *ssp; in sdp_trydestroy() local 156 ssp = sdp->sd_share; in sdp_trydestroy() 157 if (ssp != NULL) { in sdp_trydestroy() 158 smb_share_lock(ssp); in sdp_trydestroy() 159 smb_share_rele(ssp, scred); in sdp_trydestroy() 176 struct smb_share *ssp; in nsmb_dev_ioctl() local 210 (struct smbioc_oshare*)data, scred, &ssp); in nsmb_dev_ioctl() 213 sdp->sd_share = ssp; in nsmb_dev_ioctl() 214 smb_share_unlock(ssp); in nsmb_dev_ioctl() 260 if ((ssp = sdp->sd_share) == NULL) { in nsmb_dev_ioctl() [all …]
|
H A D | smb_conn.h | 287 #define SMBS_ST_LOCK(ssp) smb_sl_lock(&(ssp)->ss_stlock) argument 288 #define SMBS_ST_LOCKPTR(ssp) (&(ssp)->ss_stlock) argument 289 #define SMBS_ST_UNLOCK(ssp) smb_sl_unlock(&(ssp)->ss_stlock) argument 309 #define SSTOVC(ssp) CPTOVC(((ssp)->obj.co_parent)) argument 310 #define SSTOCP(ssp) (&(ssp)->obj) argument 327 struct smb_share *ssp; /* returned */ member 390 int smb_share_access(struct smb_share *ssp, struct smb_cred *scred, mode_t mode); 391 void smb_share_ref(struct smb_share *ssp); 392 void smb_share_rele(struct smb_share *ssp, struct smb_cred *scred); 393 int smb_share_get(struct smb_share *ssp, struct smb_cred *scred); [all …]
|
H A D | smb_smb.c | 496 smb_smb_treeconnect(struct smb_share *ssp, struct smb_cred *scred) in smb_smb_treeconnect() argument 508 if (SSTOVC(ssp)->vc_hflags2 & SMB_FLAGS2_UNICODE) { in smb_smb_treeconnect() 509 vcp = SSTOVC(ssp); in smb_smb_treeconnect() 515 ssp->ss_tid = SMB_TID_UNKNOWN; in smb_smb_treeconnect() 516 error = smb_rq_alloc(SSTOCP(ssp), SMB_COM_TREE_CONNECT_ANDX, scred, &rqp); in smb_smb_treeconnect() 536 smb_share_getpass(ssp)/*, in smb_smb_treeconnect() 539 strncpy(pbuf, smb_share_getpass(ssp), in smb_smb_treeconnect() 566 pp = ssp->ss_name; in smb_smb_treeconnect() 568 pp = smb_share_typename(ssp->ss_type); in smb_smb_treeconnect() 575 ssp->ss_tid = rqp->sr_rptid; in smb_smb_treeconnect() [all …]
|
H A D | smb_usr.c | 150 *sspp = vspec.ssp; in smb_usr_lookup() 185 struct smb_share *ssp; in smb_usr_openshare() local 192 error = smb_vc_lookupshare(vcp, &shspec, scred, &ssp); in smb_usr_openshare() 194 *sspp = ssp; in smb_usr_openshare() 199 error = smb_share_create(vcp, &shspec, scred, &ssp); in smb_usr_openshare() 202 error = smb_smb_treeconnect(ssp, scred); in smb_usr_openshare() 204 smb_share_put(ssp, scred); in smb_usr_openshare() 206 *sspp = ssp; in smb_usr_openshare() 211 smb_usr_simplerequest(struct smb_share *ssp, struct smbioc_rq *dp, in smb_usr_simplerequest() argument 234 error = smb_rq_init(rqp, SSTOCP(ssp), dp->ioc_cmd, scred); in smb_usr_simplerequest() [all …]
|
H A D | smb_rq.c | 180 struct smb_share *ssp = rqp->sr_share; in smb_rq_enqueue() local 183 if (ssp == NULL || rqp->sr_cred == &rqp->sr_vc->vc_iod->iod_scred) { in smb_rq_enqueue() 187 SMBS_ST_LOCK(ssp); in smb_rq_enqueue() 188 if (ssp->ss_flags & SMBS_RECONNECTING) { in smb_rq_enqueue() 189 msleep(&ssp->ss_vcgenid, SMBS_ST_LOCKPTR(ssp), in smb_rq_enqueue() 195 if (smb_share_valid(ssp) || (ssp->ss_flags & SMBS_CONNECTED) == 0) { in smb_rq_enqueue() 196 SMBS_ST_UNLOCK(ssp); in smb_rq_enqueue() 198 SMBS_ST_UNLOCK(ssp); in smb_rq_enqueue() 200 SMBIOD_EV_TREECONNECT | SMBIOD_EV_SYNC, ssp); in smb_rq_enqueue() 279 struct smb_share *ssp = NULL; in smb_rq_getenv() local [all …]
|
H A D | smb_iod.c | 185 smb_iod_treeconnect(struct smbiod *iod, struct smb_share *ssp) in smb_iod_treeconnect() argument 198 SMBS_ST_LOCK(ssp); in smb_iod_treeconnect() 199 ssp->ss_flags |= SMBS_RECONNECTING; in smb_iod_treeconnect() 200 SMBS_ST_UNLOCK(ssp); in smb_iod_treeconnect() 201 error = smb_smb_treeconnect(ssp, &iod->iod_scred); in smb_iod_treeconnect() 202 SMBS_ST_LOCK(ssp); in smb_iod_treeconnect() 203 ssp->ss_flags &= ~SMBS_RECONNECTING; in smb_iod_treeconnect() 204 SMBS_ST_UNLOCK(ssp); in smb_iod_treeconnect() 205 wakeup(&ssp->ss_vcgenid); in smb_iod_treeconnect() 214 struct smb_share *ssp = rqp->sr_share; in smb_iod_sendrq() local [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/spi/ |
H A D | marvell,mmp2-ssp.yaml | 5 $id: http://devicetree.org/schemas/spi/marvell,mmp2-ssp.yaml# 8 title: PXA2xx SSP SPI Controller 16 - marvell,mmp2-ssp 17 - mrvl,ce4100-ssp 18 - mvrl,pxa168-ssp 19 - mrvl,pxa25x-ssp 21 - mrvl,pxa27x-ssp 22 - mrvl,pxa3xx-ssp 23 - mrvl,pxa910-ssp 65 const: marvell,mmp2-ssp [all …]
|
H A D | mxs-spi.txt | 1 * Freescale MX233/MX28 SSP/SPI 6 - interrupts: Should contain SSP ERROR interrupt 8 and SSP DMA channel ID. 18 ssp0: ssp@80010000 {
|
/freebsd/sys/contrib/device-tree/Bindings/pinctrl/ |
H A D | marvell,dove-pinctrl.txt | 30 mpp10 10 gpio, pmu, ssp(sclk), pmu* 36 ssp(extclk), pmu* 37 mpp14 14 gpio, pmu, uart2(txd), sdio1(buspwr), ssp(rxd), pmu* 38 mpp15 15 gpio, pmu, uart2(rxd), sdio1(ledctrl), ssp(sfrm), pmu* 47 uart1(cts), ssp(sfrm) 49 lcd-spi(mosi), uart1(cts), ssp(txd) 51 lcd-spi(sck), ssp(sclk) 55 mpp_audio1 52-57 gpio, i2s1/spdifo, i2s1, spdifo, twsi, ssp/spdifo, ssp, 56 ssp/twsi 85 - ssp/spdifo : ssp on pins 52-55, spdifo on pin 57, no gpios [all …]
|
/freebsd/sys/fs/smbfs/ |
H A D | smbfs_smb.c | 89 struct smb_share *ssp = np->n_mount->sm_share; in smbfs_smb_lockandx() local 98 error = smb_rq_alloc(SSTOCP(ssp), SMB_COM_LOCKING_ANDX, scred, &rqp); in smbfs_smb_lockandx() 127 struct smb_share *ssp = np->n_mount->sm_share; in smbfs_smb_lock() local 129 if (SMB_DIALECT(SSTOVC(ssp)) < SMB_DIALECT_LANMAN1_0) in smbfs_smb_lock() 139 smbfs_query_info_fs(struct smb_share *ssp, struct statfs *sbp, in smbfs_query_info_fs() argument 149 error = smb_t2_alloc(SSTOCP(ssp), SMB_TRANS2_QUERY_FS_INFORMATION, in smbfs_query_info_fs() 179 smbfs_query_info_alloc(struct smb_share *ssp, struct statfs *sbp, in smbfs_query_info_alloc() argument 189 error = smb_t2_alloc(SSTOCP(ssp), SMB_TRANS2_QUERY_FS_INFORMATION, in smbfs_query_info_alloc() 220 smbfs_query_info_disk(struct smb_share *ssp, struct statfs *sbp, in smbfs_query_info_disk() argument 228 error = smb_rq_alloc(SSTOCP(ssp), SMB_COM_QUERY_INFORMATION_DISK, in smbfs_query_info_disk() [all …]
|
H A D | smbfs_vfsops.c | 134 struct smb_share *ssp = NULL; in smbfs_mount() local 161 error = smb_dev2share(v, SMBM_EXEC, scred, &ssp, &dev); in smbfs_mount() 170 vcp = SSTOVC(ssp); in smbfs_mount() 171 smb_share_unlock(ssp); in smbfs_mount() 172 mp->mnt_stat.f_iosize = SSTOVC(ssp)->vc_txmax; in smbfs_mount() 174 smp->sm_share = ssp; in smbfs_mount() 225 strncpy(pc, ssp->ss_name, pe - pc - 2); in smbfs_mount() 243 if (ssp) in smbfs_mount() 244 smb_share_put(ssp, scred); in smbfs_mount() 385 struct smb_share *ssp = smp->sm_share; in smbfs_statfs() local [all …]
|
/freebsd/share/examples/sunrpc/sort/ |
H A D | sort_proc.c | 12 sort_1(ssp) in sort_1() argument 13 struct sortstrings *ssp; in sort_1() 20 qsort(ssp->ss.ss_val, ssp->ss.ss_len, sizeof (char *), comparestrings); 21 ss_res.ss.ss_len = ssp->ss.ss_len; 22 ss_res.ss.ss_val = (str *)malloc(ssp->ss.ss_len * sizeof(str *)); 23 bcopy(ssp->ss.ss_val, ss_res.ss.ss_val, 24 ssp->ss.ss_len * sizeof(str *));
|
/freebsd/sys/contrib/device-tree/Bindings/sound/ |
H A D | mrvl,pxa-ssp.txt | 1 Marvell PXA SSP CPU DAI bindings 5 compatible Must be "mrvl,pxa-ssp-dai" 6 port A phandle reference to a PXA ssp upstream device 20 ssp1: ssp@41000000 { 21 compatible = "mrvl,pxa3xx-ssp"; 24 clock-names = "pxa27x-ssp.0"; 30 compatible = "mrvl,pxa-ssp-dai";
|
/freebsd/sys/dev/isci/scil/ |
H A D | scic_sds_remote_node_context.c | 185 rnc->ssp.remote_node_index = this_rnc->remote_node_index; in scic_sds_remote_node_context_construct_buffer() 186 rnc->ssp.remote_node_port_width = this_rnc->device->device_port_width; in scic_sds_remote_node_context_construct_buffer() 187 rnc->ssp.logical_port_index = in scic_sds_remote_node_context_construct_buffer() 190 rnc->ssp.remote_sas_address_hi = SCIC_SWAP_DWORD(this_rnc->device->device_address.high); in scic_sds_remote_node_context_construct_buffer() 191 rnc->ssp.remote_sas_address_lo = SCIC_SWAP_DWORD(this_rnc->device->device_address.low); in scic_sds_remote_node_context_construct_buffer() 193 rnc->ssp.nexus_loss_timer_enable = TRUE; in scic_sds_remote_node_context_construct_buffer() 194 rnc->ssp.check_bit = FALSE; in scic_sds_remote_node_context_construct_buffer() 195 rnc->ssp.is_valid = FALSE; in scic_sds_remote_node_context_construct_buffer() 196 rnc->ssp.is_remote_node_context = TRUE; in scic_sds_remote_node_context_construct_buffer() 197 rnc->ssp.function_number = 0; in scic_sds_remote_node_context_construct_buffer() [all …]
|
H A D | scic_io_request.h | 77 * @brief This structure contains additional optional parameters for SSP 88 * information for SSP IO requests. 96 * Transport Layer Retries (TLR) is an SSP protocol specific feature. 98 * feature information for SSP IO requests. 128 * for constructing the passthrough request common to SSP, SMP and STP. 165 * for constructing the passthrough request specific to SSP. 359 * @brief This method is called by the SCI user to build an SSP 373 * remote_device does not support the SSP protocol. 385 * @brief This method is called by the SCI user to build an SSP 403 * remote_device does not support the SSP protocol. [all …]
|
H A D | scic_sds_request.c | 134 * This macro returns the sizeof memory required to store the an SSP IO 148 * This macro returns the address of the ssp command buffer in the io 157 * This macro aligns the ssp command buffer in DWORD alignment 166 * This macro returns the DWORD-aligned ssp command buffer 175 * This macro returns the address of the ssp response buffer in the io 185 * This macro aligns the ssp response buffer in DWORD-aligned fashion 194 * This macro returns the DWORD-aligned ssp response buffer 234 * This macro returns the sizeof of memory required to store an SSP Task 244 * This macro returns the address of the ssp command buffer in the task 254 * This macro returns the address of the ssp response buffer in the task [all …]
|
H A D | intel_sas.h | 238 * @brief This enumeration depicts the SAS specification defined SSP frame 253 * @brief This structure depicts the contents of the SSP COMMAND 255 * individual fields please reference the SAS specification SSP 277 * @brief This structure depicts the contents of the SSP TASK INFORMATION 279 * please reference the SAS specification SSP transport layer 305 * @brief This structure depicts the contents of the SSP RESPONSE 307 * individual fields please reference the SAS specification SSP 328 * @brief This enumeration depicts the SAS specification defined SSP data present 341 * @brief This structure depicts the contents of an SSP frame header. For 343 * the SAS specification transport layer SSP frame format.
|
/freebsd/usr.bin/mail/ |
H A D | util.c | 245 static int ssp; /* Top of file stack */ variable 272 if (ssp >= SSTACK_SIZE - 1) { in source() 277 sstack[ssp].s_file = input; in source() 278 sstack[ssp].s_cond = cond; in source() 279 sstack[ssp].s_loading = loading; in source() 280 ssp++; in source() 295 if (ssp <= 0) { in unstack() 303 ssp--; in unstack() 304 cond = sstack[ssp].s_cond; in unstack() 305 loading = sstack[ssp].s_loading; in unstack() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | ExecutorProcessControl.cpp | 29 std::shared_ptr<SymbolStringPool> SSP, std::unique_ptr<TaskDispatcher> D, in SelfExecutorProcessControl() argument 32 : ExecutorProcessControl(std::move(SSP), std::move(D)), in SelfExecutorProcessControl() 57 std::shared_ptr<SymbolStringPool> SSP, in Create() argument 61 if (!SSP) in Create() 62 SSP = std::make_shared<SymbolStringPool>(); in Create() 74 std::move(SSP), std::move(D), std::move(TT), *PageSize, in Create() 105 make_error<SymbolsNotFound>(SSP, std::move(MissingSymbols))); in lookupSymbolsAsync()
|
/freebsd/sys/contrib/device-tree/Bindings/mmc/ |
H A D | mxs-mmc.txt | 3 The Freescale MXS Synchronous Serial Ports (SSP) can act as a MMC controller 14 and SSP DMA channel ID. 20 ssp0: ssp@80010000 {
|
/freebsd/sys/contrib/device-tree/src/arm/intel/pxa/ |
H A D | pxa3xx.dtsi | 256 ssp1: ssp@41000000 { 257 compatible = "mrvl,pxa3xx-ssp"; 264 ssp2: ssp@41700000 { 265 compatible = "mrvl,pxa3xx-ssp"; 272 ssp3: ssp@41900000 { 273 compatible = "mrvl,pxa3xx-ssp"; 280 ssp4: ssp@41a00000 { 281 compatible = "mrvl,pxa3xx-ssp";
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | ExecutorProcessControl.h | 190 ExecutorProcessControl(std::shared_ptr<SymbolStringPool> SSP, in ExecutorProcessControl() argument 192 : SSP(std::move(SSP)), D(std::move(D)) {} in ExecutorProcessControl() 204 SymbolStringPtr intern(StringRef SymName) { return SSP->intern(SymName); } in intern() 207 std::shared_ptr<SymbolStringPool> getSymbolStringPool() const { return SSP; } in getSymbolStringPool() 423 std::shared_ptr<SymbolStringPool> SSP; 467 std::shared_ptr<SymbolStringPool> SSP = nullptr, 471 SSP ? std::move(SSP) : std::make_shared<SymbolStringPool>(), 515 std::shared_ptr<SymbolStringPool> SSP, std::unique_ptr<TaskDispatcher> D, 525 Create(std::shared_ptr<SymbolStringPool> SSP = nullptr,
|
/freebsd/sys/dev/pms/RefTisa/sallsdk/spc/ |
H A D | sampidefs.h | 231 /** \brief the data structure of SSP INI IO Start Command 233 * use to describe MPI SSP INI IO Start Command (64 bytes) 248 /** \brief the data structure of SSP INI TM Start Command 250 * use to describe MPI SSP INI TM Start Command (64 bytes) 263 /** \brief the data structure of SSP INI Extended IO Start Command 265 * use to describe MPI SSP INI Extended CDB Start Command (96 bytes to support 32 CDB) 316 /** \brief the data structure of SSP Abort Command 318 * use to describe MPI SSP Abort Command (64 bytes) 652 /** \brief the data structure of SSP TGT IO Start Command 654 * use to describe MPI SSP TGT IO Start Command (64 bytes) [all …]
|