| 247 | |
| 248 | |
| 249 | class BackendKeyData(_ZeroPadding): |
| 250 | name = "Backend Key Data" |
| 251 | fields_desc = [ |
| 252 | ByteTagField(b"K"), |
| 253 | FieldLenField("len", None, fmt="I"), |
| 254 | SignedIntField("pid", 0), |
| 255 | SignedIntField("key", 0), |
| 256 | ] |
| 257 | |
| 258 | |
| 259 | STATUS_TYPE = { |
nothing calls this directly
no test coverage detected
searching dependent graphs…