Searched refs:BUF_SIZE_SMALL (Results 1 – 10 of 10) sorted by relevance
/developtools/hdc/hdc_rust/src/cffi/ |
D | mount.cpp | 40 char dir[BUF_SIZE_SMALL] = ""; in FindMountDeviceByPath() 45 res = sscanf_s(buf, "%255s %255s %*s %*s %d %d\n", dev, BUF_SIZE_SMALL - 1, in FindMountDeviceByPath() 46 dir, BUF_SIZE_SMALL - 1, &freq, &passnno); in FindMountDeviceByPath() 48 dev[BUF_SIZE_SMALL - 1] = '\0'; in FindMountDeviceByPath() 49 dir[BUF_SIZE_SMALL - 1] = '\0'; in FindMountDeviceByPath() 71 char dev[BUF_SIZE_SMALL] = ""; in RemountPartition()
|
D | mount.h | 19 #define BUF_SIZE_SMALL 256 macro
|
/developtools/hdc/src/daemon/ |
D | daemon_unity.cpp | 110 char dir[BUF_SIZE_SMALL] = ""; in FindMountDeviceByPath() 114 res = sscanf_s(token, "%255s %255s %*s %*s %d %d\n", dev, BUF_SIZE_SMALL - 1, in FindMountDeviceByPath() 115 dir, BUF_SIZE_SMALL - 1, &freq, &passnno); in FindMountDeviceByPath() 117 dev[BUF_SIZE_SMALL - 1] = '\0'; in FindMountDeviceByPath() 118 dir[BUF_SIZE_SMALL - 1] = '\0'; in FindMountDeviceByPath() 131 char dev[BUF_SIZE_SMALL] = ""; in RemountPartition()
|
D | shell.h | 44 char devname[BUF_SIZE_SMALL] = "";
|
/developtools/hdc/src/common/ |
D | define.h | 50 constexpr uint16_t BUF_SIZE_SMALL = 256; variable
|
D | forward.cpp | 551 char bufString[BUF_SIZE_SMALL] = ""; in BeginForward() 566 if (strlen(argv[0]) > BUF_SIZE_SMALL || strlen(argv[1]) > BUF_SIZE_SMALL) { in BeginForward()
|
D | auth.cpp | 437 char keyPaths[][BUF_SIZE_SMALL] = { "/root/.harmony/hdckey.pub" }; in LoadDaemonKey() 439 char keyPaths[][BUF_SIZE_SMALL] = { "/data/service/el0/hdc/hdc_keys" }; in LoadDaemonKey()
|
/developtools/hdc/src/host/ |
D | server.cpp | 124 char buf[BUF_SIZE_SMALL] = ""; in PullupServerWin32() 168 char path[BUF_SIZE_SMALL] = ""; in PullupServer()
|
D | client.cpp | 239 char buffer[BUF_SIZE_SMALL] = {0}; in RunCommandWin32()
|
/developtools/hdc/hdc_rust/src/common/ |
D | forward.rs | 56 pub const BUF_SIZE_SMALL: usize = 256; constant 1334 if argv[0].len() > BUF_SIZE_SMALL || argv[1].len() > BUF_SIZE_SMALL { in begin_forward()
|