Lines Matching refs:args

53     def set(self, args: List[str]):
66 def set(self, args: List[str]):
67 if len(args) == 0:
69 self._seconds = int(args[0])
92 def set(self, args: List[str]):
93 if len(args) == 0:
95 self._seconds = int(args[0])
116 def set(self, args: List[str]):
117 if len(args) == 0:
119 if args[0].startswith('0x'):
120 args[0] = args[0][2:]
121 nk = args[0]
144 def set(self, args: List[str]):
145 if len(args) == 0:
147 nn = args[0]
169 def set(self, args: List[str]):
170 if len(args) == 0:
172 if args[0].startswith('0x'):
173 args[0] = args[0][2:]
174 epid = args[0]
198 def set(self, args: List[str]):
199 if len(args) == 0:
201 if args[0].startswith('0x'):
202 args[0] = args[0][2:]
203 mlp = args[0]
227 def set(self, args: List[str]):
228 if len(args) == 0:
230 dt = int(args[0])
249 def set(self, args: List[str]):
250 if len(args) == 0:
252 if args[0].startswith('0x'):
253 args[0] = args[0][2:]
254 pid = args[0]
279 def set(self, args: List[str]):
280 if len(args) == 0:
282 channel = int(args[0])
302 def set(self, args: List[str]):
303 if len(args) == 0:
305 if args[0].startswith('0x'):
306 args[0] = args[0][2:]
307 pskc = args[0]
345 def set(self, args: List[str]):
346 if len(args) == 0:
348 rotation_time, flags, version_threshold = args + [None] * (3 - len(args))
428 def set(self, args: List[str]):
431 if len(args) == 0:
433 if args[0].startswith('0x'):
434 args[0] = args[0][2:]
435 channelmsk = bytes.fromhex(args[0])
465 def set(self, args: List[str]):
479 def create_dataset_entry(type: MeshcopTlvType, args=None): argument
500 if args:
501 res.set(args)