Lines Matching refs:structure

88 | Init | **host**: structure pointer to the UART controller at the core layer.| –| HDF_STATUS| Init…
89 | Deinit | **host**: structure pointer to the UART controller at the core layer.| –| HDF_STATUS| De…
90 | Read | **host**: structure pointer to the UART controller at the core layer.<br>**size**: size of…
91 | Write | **host**: structure pointer to the UART controller at the core layer.<br>**data**: pointe…
92 | SetBaud | **host**: structure pointer to the UART controller at the core layer.<br>**baudRate**: …
93 | GetBaud | **host**: structure pointer to the UART controller at the core layer.| **baudRate**: po…
94 | GetAttribute | **host**: structure pointer to the UART controller at the core layer.| **attribute…
95 | SetAttribute | **host**: structure pointer to the UART controller at the core layer.<br>**attribu…
96 | SetTransMode | **host**: structure pointer to the UART controller at the core layer.<br>**mode**:…
97 | PollEvent | **host**: structure pointer to the UART controller at the core layer.<br>**filep**: v…
150 …T"; // Driver name, which must be the same as moduleName in the HdfDriverEntry structure.
210 …Initialize the **UartHost** object at the core layer, including defining a custom structure (to pa…
212 - Define a custom structure.
214structure holds parameters and data. The **DeviceResourceIface** method provided by the HDF reads …
217 struct UartPl011Port { // Pin description structure customized.
233 struct UartTransfer *rxTransfer; // Buffer structure (FIFO structure)
246 struct UartOps *ops; // Custom function pointer structure.
250 …// UartHost is the controller structure at the core layer. The Init function assigns values to the…
302 Initializes the custom structure object and **UartHost**.
341 …Initialize the custom structure and **UartHost**, calls **UartAddDev()** at the core layer to add …
361 …L; // udd and port are custom structure objects. You can…
373 … // Pass the attributes of HdfDeviceObject to the custom structure to perform relat…
410 …ller. This function assigns values to **Release()** in the driver entry structure. When the HDF fa…