/kernel/linux/linux-6.6/tools/perf/util/ |
H A D | probe-finder.c | 1279 struct perf_probe_arg *args; member 1299 vf->args[vf->nargs].var = (char *)dwarf_diename(die_mem); in copy_variables_cb() 1300 if (vf->args[vf->nargs].var == NULL) { in copy_variables_cb() 1304 pr_debug(" %s", vf->args[vf->nargs].var); in copy_variables_cb() 1316 struct perf_probe_arg *args) in expand_probe_args() 1321 struct local_vars_finder vf = {.pf = pf, .args = args, .vars = false, in expand_probe_args() 1326 if (strcmp(pf->pev->args[i].var, PROBE_ARG_VARS) == 0) in expand_probe_args() 1328 else if (strcmp(pf->pev->args[i].var, PROBE_ARG_PARAMS) != 0) { in expand_probe_args() 1330 args[ in expand_probe_args() 1315 expand_probe_args(Dwarf_Die *sc_die, struct probe_finder *pf, struct perf_probe_arg *args) expand_probe_args() argument 1365 struct perf_probe_arg *args = NULL; add_probe_trace_event() local [all...] |
/third_party/node/deps/v8/src/base/platform/ |
H A D | platform-win32.cc | 588 static void VPrintHelper(FILE* stream, const char* format, va_list args) { in VPrintHelper() argument 594 OS::VSNPrintF(buffer, sizeof(buffer), format, args); in VPrintHelper() 597 vfprintf(stream, format, args); in VPrintHelper() 661 va_list args; in Print() local 662 va_start(args, format); in Print() 663 VPrint(format, args); in Print() 664 va_end(args); in Print() 668 void OS::VPrint(const char* format, va_list args) { in VPrint() argument 669 VPrintHelper(stdout, format, args); in VPrint() 674 va_list args; in FPrint() local 681 VFPrint(FILE* out, const char* format, va_list args) VFPrint() argument 688 va_list args; PrintError() local 695 VPrintError(const char* format, va_list args) VPrintError() argument 701 va_list args; SNPrintF() local 709 VSNPrintF(char* str, int length, const char* format, va_list args) VSNPrintF() argument [all...] |
/third_party/python/Lib/ |
H A D | pickle.py | 133 GLOBAL = b'c' # push self.find_class(modname, name); 2 string args 621 def save_reduce(self, func, args, state=None, listitems=None, 625 if not isinstance(args, tuple): 626 raise PicklingError("args from save_reduce() must be a tuple") 635 cls, args, kwargs = args 637 raise PicklingError("args[0] from {} args has no __new__" 640 raise PicklingError("args[0] from {} args ha [all...] |
/third_party/python/Modules/ |
H A D | pyexpat.c | 215 call_with_frame(const char *funcname, int lineno, PyObject* func, PyObject* args, in call_with_frame() argument 220 res = PyObject_Call(func, args, NULL); in call_with_frame() 261 PyObject *args; in call_character_handler() local 267 args = PyTuple_New(1); in call_character_handler() 268 if (args == NULL) in call_character_handler() 272 Py_DECREF(args); in call_character_handler() 278 PyTuple_SET_ITEM(args, 0, temp); in call_character_handler() 282 self->handlers[CharacterData], args, self); in call_character_handler() 285 Py_DECREF(args); in call_character_handler() 346 PyObject *container, *rv, *args; in my_StartElementHandler() local 548 PyObject *args = NULL; my_ElementDeclHandler() local [all...] |
H A D | _xxsubinterpretersmodule.c | 1481 channelid_new(PyTypeObject *cls, PyObject *args, PyObject *kwds) in channelid_new() argument 1489 if (!PyArg_ParseTupleAndKeywords(args, kwds, in channelid_new() 1994 interp_create(PyObject *self, PyObject *args, PyObject *kwds) in interp_create() argument 1999 if (!PyArg_ParseTupleAndKeywords(args, kwds, "|$i:create", kwlist, in interp_create() 2036 interp_destroy(PyObject *self, PyObject *args, PyObject *kwds) in interp_destroy() argument 2041 if (!PyArg_ParseTupleAndKeywords(args, kwds, in interp_destroy() 2158 interp_run_string(PyObject *self, PyObject *args, PyObject *kwds) in interp_run_string() argument 2163 if (!PyArg_ParseTupleAndKeywords(args, kwds, in interp_run_string() 2203 object_is_shareable(PyObject *self, PyObject *args, PyObject *kwds) in object_is_shareable() argument 2207 if (!PyArg_ParseTupleAndKeywords(args, kwd in object_is_shareable() 2227 interp_is_running(PyObject *self, PyObject *args, PyObject *kwds) interp_is_running() argument 2280 channel_destroy(PyObject *self, PyObject *args, PyObject *kwds) channel_destroy() argument 2339 channel_list_interpreters(PyObject *self, PyObject *args, PyObject *kwds) channel_list_interpreters() argument 2401 channel_send(PyObject *self, PyObject *args, PyObject *kwds) channel_send() argument 2423 channel_recv(PyObject *self, PyObject *args, PyObject *kwds) channel_recv() argument 2458 channel_close(PyObject *self, PyObject *args, PyObject *kwds) channel_close() argument 2505 channel_release(PyObject *self, PyObject *args, PyObject *kwds) channel_release() argument 2540 channel__channel_id(PyObject *self, PyObject *args, PyObject *kwds) channel__channel_id() argument [all...] |
/third_party/libabigail/tools/ |
H A D | abipkgdiff.cc | 1264 /// @args the list of argument sets used for comparison 2057 compare_args_sptr args; member in compare_task 2067 : args(a), in compare_task() 2085 if (args->opts.exported_interfaces_only.has_value()) in perform() 2087 (*args->opts.exported_interfaces_only); in perform() 2089 status |= compare(args->elf1, args->debug_dir1, args->private_types_suppr1, in perform() 2090 args->elf2, args in perform() [all...] |
/kernel/linux/linux-5.10/tools/perf/util/scripting-engines/ |
H A D | trace-event-python.c | 181 static void call_object(PyObject *handler, PyObject *args, const char *die_msg) in call_object() argument 185 retval = PyObject_CallObject(handler, args); in call_object() 191 static void try_call_object(const char *handler_name, PyObject *args) in try_call_object() argument 197 call_object(handler, args, handler_name); in try_call_object() 273 struct tep_print_arg *args) in define_event_symbols() 275 if (args == NULL) in define_event_symbols() 278 switch (args->type) { in define_event_symbols() 283 args->atom.atom); in define_event_symbols() 288 cur_field_name = strdup(args->field.name); in define_event_symbols() 291 define_event_symbols(event, ev_name, args in define_event_symbols() 271 define_event_symbols(struct tep_event *event, const char *ev_name, struct tep_print_arg *args) define_event_symbols() argument [all...] |
/kernel/linux/linux-6.6/tools/perf/util/scripting-engines/ |
H A D | trace-event-python.c | 159 static void call_object(PyObject *handler, PyObject *args, const char *die_msg) in call_object() argument 163 retval = PyObject_CallObject(handler, args); in call_object() 169 static void try_call_object(const char *handler_name, PyObject *args) in try_call_object() argument 175 call_object(handler, args, handler_name); in try_call_object() 280 struct tep_print_arg *args) in define_event_symbols() 282 if (args == NULL) in define_event_symbols() 285 switch (args->type) { in define_event_symbols() 290 args->atom.atom); in define_event_symbols() 295 cur_field_name = strdup(args->field.name); in define_event_symbols() 298 define_event_symbols(event, ev_name, args in define_event_symbols() 278 define_event_symbols(struct tep_event *event, const char *ev_name, struct tep_print_arg *args) define_event_symbols() argument [all...] |
/kernel/linux/linux-6.6/net/sunrpc/ |
H A D | xprtsock.c | 2557 struct tls_handshake_args args = { in xs_tls_handshake_sync() local 2571 rc = tls_client_hello_anon(&args, GFP_KERNEL); in xs_tls_handshake_sync() 2576 args.ta_my_cert = xprtsec->cert_serial; in xs_tls_handshake_sync() 2577 args.ta_my_privkey = xprtsec->privkey_serial; in xs_tls_handshake_sync() 2578 rc = tls_client_hello_x509(&args, GFP_KERNEL); in xs_tls_handshake_sync() 2632 struct rpc_create_args args = { in xs_tcp_tls_setup_socket() local 2659 lower_clnt = rpc_create(&args); in xs_tcp_tls_setup_socket() 3140 static struct rpc_xprt *xs_setup_xprt(struct xprt_create *args, in xs_setup_xprt() argument 3147 if (args->addrlen > sizeof(xprt->addr)) { in xs_setup_xprt() 3152 xprt = xprt_alloc(args in xs_setup_xprt() 3191 xs_setup_local(struct xprt_create *args) xs_setup_local() argument 3258 xs_setup_udp(struct xprt_create *args) xs_setup_udp() argument 3335 xs_setup_tcp(struct xprt_create *args) xs_setup_tcp() argument 3417 xs_setup_tcp_tls(struct xprt_create *args) xs_setup_tcp_tls() argument 3505 xs_setup_bc_tcp(struct xprt_create *args) xs_setup_bc_tcp() argument [all...] |
/third_party/python/Lib/test/ |
H A D | test_ast.py | 48 "def f(*args): pass", 50 "def f(*args: *Ts): pass", 52 "def f(*args: *tuple[int, ...]): pass", 54 "def f(*args: *tuple[int, *Ts]): pass", 57 # FunctionDef with all kind of args and docstring 58 "def f(a, b=1, c=None, d=[], e={}, *args, f=42, **kwargs): 'doc for f()'", 449 self.assertEqual(x._fields, ('posonlyargs', 'args', 'vararg', 'kwonlyargs', 453 x.args 457 self.assertEqual(x.args, 2) 586 def __init__(self, *args, **kwarg [all...] |
/base/msdp/device_status/intention/services/intention_service/include/ |
H A D | intention_dumper.h | 34 void Dump(int32_t fd, const std::vector<std::string> &args); 46 void CheckDefineOutput(int32_t fd, const char* fmt, Ts... args) const;
|
/base/sensors/miscdevice/services/miscdevice_service/include/ |
H A D | miscdevice_dump.h | 39 void ParseCommand(int32_t fd, const std::vector<std::string> &args); 48 void RunVibratorDump(int32_t fd, int32_t optionIndex, const std::vector<std::string> &args, char **argv);
|
/base/update/updater/services/ui/view/page/ |
H A D | page.h | 40 static std::shared_ptr<T> Create(Args && ... args) in Create() argument 43 return std::shared_ptr<T>(new(std::nothrow) T(std::forward<Args>(args)...)); in Create()
|
/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/bridge/webview/ |
H A D | ark_web_js_result_callback_impl.h | 32 ArkWebValue GetJavaScriptResult(ArkWebValueVector args, const ArkWebString& method, const ArkWebString& object_name, 35 ArkWebValue GetJavaScriptResultFlowbuf(ArkWebValueVector args, const ArkWebString& method,
|
/base/web/webview/ohos_interface/include/ohos_nweb/ |
H A D | nweb_javascript_result_callback.h | 33 virtual std::shared_ptr<NWebValue> GetJavaScriptResult(std::vector<std::shared_ptr<NWebValue>> args, 36 virtual std::shared_ptr<NWebValue> GetJavaScriptResultFlowbuf(std::vector<std::shared_ptr<NWebValue>> args,
|
/foundation/ability/ability_runtime/interfaces/kits/native/appkit/ability_delegator/runner_runtime/ |
H A D | cj_test_runner.h | 36 * @param args Indicates the AbilityDelegatorArgs object. 41 const std::shared_ptr<AbilityDelegatorArgs> &args, const AppExecFwk::BundleInfo &bundleInfo); 62 const std::shared_ptr<AbilityDelegatorArgs> &args, const AppExecFwk::BundleInfo &bundleInfo);
|
H A D | js_test_runner.h | 36 * @param args Indicates the AbilityDelegatorArgs object. 41 const std::shared_ptr<AbilityDelegatorArgs> &args, const AppExecFwk::BundleInfo &bundleInfo, bool isFaJsModel); 62 const std::shared_ptr<AbilityDelegatorArgs> &args, const AppExecFwk::BundleInfo &bundleInfo, bool isFaJsModel);
|
/foundation/ability/ability_runtime/frameworks/js/napi/featureAbility/ |
H A D | napi_data_ability_operation.h | 42 * @param args Indicates the arguments passed into the callback. 46 napi_value UnwrapDataAbilityOperation(std::shared_ptr<DataAbilityOperation> ¶m, napi_env env, napi_value args); 67 * @param args Indicates the arguments passed into the callback. 72 std::shared_ptr<DataAbilityOperationBuilder> &builder, napi_env env, napi_value args);
|
/foundation/arkui/ace_engine/frameworks/core/components/text_field/ |
H A D | text_field_controller.cpp | 66 void TextFieldController::Insert(const std::string& args) in Insert() argument 72 textField->Insert(args); in Insert()
|
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/ |
H A D | cj_navigator_ffi.cpp | 37 void FfiOHOSAceFrameworkNavigatorSetParams(const char* args) in FfiOHOSAceFrameworkNavigatorSetParams() argument 39 NavigatorModel::GetInstance()->SetParams(args); in FfiOHOSAceFrameworkNavigatorSetParams()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_radio.h | 33 static void JsSize(const JSCallbackInfo& args); 34 static void JsOnClick(const JSCallbackInfo& args);
|
/foundation/arkui/ace_engine/frameworks/bridge/common/dom/ |
H A D | dom_calendar.h | 39 void CallSpecializedMethod(const std::string& method, const std::string& args) override; 44 void HandleGoTo(const std::string& args);
|
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
H A D | tab_content_modifier.cpp | 31 ArkUIEventCallbackArg args[] = {}; in SetTabContentBuilder() 36 dispatch->CallInt(vmContext, methodId, 0, args); in SetTabContentBuilder()
|
/foundation/communication/bluetooth/interfaces/inner_api/include/ |
H A D | bluetooth_no_destructor.h | 29 explicit BluetoothNoDestructor(Args&&... args) in BluetoothNoDestructor() argument 31 new (buff_) T(std::forward<Args>(args)...); in BluetoothNoDestructor()
|
/foundation/multimedia/audio_framework/frameworks/native/audioutils/include/ |
H A D | audio_utils_c.h | 37 #define AUTO_CTRACE(fmt, args...) \ 39 int AUTO_NAME(ret) = sprintf_s(AUTO_NAME(str), SPRINTF_STRING_LEN, fmt, ##args); \
|