Lines Matching refs:client
20 import spdk.rpc.client as rpcclient # noqa
74 def init_crypto(config, client): argument
84 sma.get_crypto_engine().init(client, crypto_config.get('params', {}))
90 def load_plugins(plugins, client): argument
96 devices.append(device(client))
104 def wait_for_listen(client, timeout): argument
108 with client() as _client:
140 client = get_build_client(config['socket']) variable
143 wait_for_listen(client, timeout=60.0)
145 agent = sma.StorageManagementAgent(config, client)
147 devices = [sma.NvmfTcpDeviceManager(client), sma.VhostBlkDeviceManager(client),
148 sma.NvmfVfioDeviceManager(client)]
149 devices += load_plugins(config.get('plugins') or [], client)
151 client)
152 init_crypto(config, client)