Home
last modified time | relevance | path

Searched refs:cmd_copy (Results 1 – 3 of 3) sorted by relevance

/external/linux-kselftest/tools/testing/selftests/bpf/progs/
Dtest_select_reuseport_kern.c71 struct cmd *cmd, cmd_copy; in _select_by_skb_data() local
118 if (bpf_skb_load_bytes(reuse_md, th->doff << 2, &cmd_copy, in _select_by_skb_data()
119 sizeof(cmd_copy))) in _select_by_skb_data()
121 cmd = &cmd_copy; in _select_by_skb_data()
135 &cmd_copy, sizeof(cmd_copy))) in _select_by_skb_data()
137 cmd = &cmd_copy; in _select_by_skb_data()
/external/python/cpython3/Python/
Dpythonrun.c1300 …ng(PyObject *cmd, const char *funcname, const char *what, PyCompilerFlags *cf, PyObject **cmd_copy) in _Py_SourceAsString() argument
1306 *cmd_copy = NULL; in _Py_SourceAsString()
1323 *cmd_copy = PyBytes_FromStringAndSize( in _Py_SourceAsString()
1326 if (*cmd_copy == NULL) { in _Py_SourceAsString()
1329 str = PyBytes_AS_STRING(*cmd_copy); in _Py_SourceAsString()
1330 size = PyBytes_GET_SIZE(*cmd_copy); in _Py_SourceAsString()
1342 Py_CLEAR(*cmd_copy); in _Py_SourceAsString()
/external/python/cpython3/Include/
Dpythonrun.h133 PyObject **cmd_copy);