Lines Matching refs:funcs
66 usbFunctionsFromString(funcs: string): number
82 | funcs | string | 是 | 字符串形式的功能列表。 |
102 let funcs: string = "acm";
103 let ret: number = usbManager.usbFunctionsFromString(funcs);
108 usbFunctionsToString(funcs: FunctionType): string
124 | funcs | [FunctionType](#functiontype) | 是 | USB功能数字掩码。 |
144 let funcs: number = usbManager.FunctionType.ACM | usb.FunctionType.ECM;
145 let ret: string = usbManager.usbFunctionsToString(funcs);
150 setCurrentFunctions(funcs: FunctionType): Promise\<void\>
166 | funcs | [FunctionType](#functiontype) | 是 | USB功能数字掩码。 |
187 let funcs: number = usbManager.FunctionType.HDC;
188 usbManager.setCurrentFunctions(funcs).then(() => {
421 getFunctionsFromString(funcs: string): number
439 | funcs | string | 是 | 字符串形式的功能列表。 |
459 let funcs: string = "acm";
460 let ret: number = usbManager.getFunctionsFromString(funcs);
465 getStringFromFunctions(funcs: FunctionType): string
483 | funcs | [FunctionType](#functiontype) | 是 | USB功能数字掩码。 |
503 let funcs: number = usbManager.FunctionType.ACM | usbManager.FunctionType.ECM;
504 let ret: string = usbManager.getStringFromFunctions(funcs);
509 setDeviceFunctions(funcs: FunctionType): Promise\<void\>
527 | funcs | [FunctionType](#functiontype) | 是 | USB功能数字掩码。 |
550 let funcs: number = usbManager.FunctionType.HDC;
551 usbManager.setDeviceFunctions(funcs).then(() => {