Home
last modified time | relevance | path

Searched refs:DESC_READ_LEN (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/drivers/peripheral/usb/ddk/host/src/
H A Dliteos_adapter.c26 #define DESC_READ_LEN 256 macro
283 allocLen += DESC_READ_LEN; in OsReadDescriptors()
295 ret = memset_s(ptr, DESC_READ_LEN, 0, DESC_READ_LEN); in OsReadDescriptors()
302 if (count > DESC_READ_LEN) { in OsReadDescriptors()
306 ret = memcpy_s(ptr, DESC_READ_LEN, osDev->adapterDevice->cdesc, count); in OsReadDescriptors()
H A Dlinux_adapter.c29 #define DESC_READ_LEN 256 macro
221 allocLen += DESC_READ_LEN; in OsReadDescriptors()
228 if (memset_s(ptr, DESC_READ_LEN, 0, DESC_READ_LEN) != EOK) { in OsReadDescriptors()
233 int32_t len = read(fd, ptr, DESC_READ_LEN); in OsReadDescriptors()