Home
last modified time | relevance | path

Searched refs:user (Results 101 - 125 of 2867) sorted by relevance

12345678910>>...115

/kernel/linux/linux-6.6/tools/net/ynl/generated/
H A DMakefile12 YNL_GEN_ARG_ethtool:=--user-header linux/ethtool_netlink.h \
18 SRCS=$(patsubst %,%-user.c,${GENS})
19 HDRS=$(patsubst %,%-user.h,${GENS})
20 OBJS=$(patsubst %,%-user.o,${GENS})
28 %-user.h: ../../../../Documentation/netlink/specs/%.yaml $(TOOL)
30 @$(TOOL) --mode user --header --spec $< $(YNL_GEN_ARG_$*) > $@
32 %-user.c: ../../../../Documentation/netlink/specs/%.yaml $(TOOL)
34 @$(TOOL) --mode user --source --spec $< $(YNL_GEN_ARG_$*) > $@
36 %-user.o: %-user
[all...]
/foundation/communication/netstack/frameworks/js/napi/websocket/websocket_exec/include/
H A Dwebsocket_exec.h42 static int LwsCallback(lws *wsi, lws_callback_reasons reason, void *user, void *in, size_t len);
50 static int HttpDummy(lws *wsi, lws_callback_reasons reason, void *user, void *in, size_t len);
52 static int LwsCallbackClientAppendHandshakeHeader(lws *wsi, lws_callback_reasons reason, void *user, void *in,
55 static int LwsCallbackWsPeerInitiatedClose(lws *wsi, lws_callback_reasons reason, void *user, void *in, size_t len);
57 static int LwsCallbackClientWritable(lws *wsi, lws_callback_reasons reason, void *user, void *in, size_t len);
59 static int LwsCallbackClientConnectionError(lws *wsi, lws_callback_reasons reason, void *user, void *in,
62 static int LwsCallbackClientReceive(lws *wsi, lws_callback_reasons reason, void *user, void *in, size_t len);
64 static int LwsCallbackClientFilterPreEstablish(lws *wsi, lws_callback_reasons reason, void *user, void *in,
67 static int LwsCallbackClientEstablished(lws *wsi, lws_callback_reasons reason, void *user, void *in, size_t len);
69 static int LwsCallbackClientClosed(lws *wsi, lws_callback_reasons reason, void *user, voi
[all...]
/kernel/linux/linux-5.10/arch/arm/mach-omap2/
H A Domap_hwmod_54xx_data.c298 .user = OCP_USER_MPU | OCP_USER_SDMA,
310 .user = OCP_USER_SDMA,
318 .user = OCP_USER_MPU | OCP_USER_SDMA,
326 .user = OCP_USER_MPU | OCP_USER_SDMA,
334 .user = OCP_USER_MPU | OCP_USER_SDMA,
342 .user = OCP_USER_MPU,
350 .user = OCP_USER_MPU,
358 .user = OCP_USER_MPU | OCP_USER_SDMA,
366 .user = OCP_USER_MPU,
374 .user
[all...]
H A Domap_hwmod_33xx_43xx_interconnect_data.c26 .user = OCP_USER_MPU,
34 .user = OCP_USER_MPU | OCP_USER_SDMA,
42 .user = OCP_USER_MPU | OCP_USER_SDMA,
50 .user = OCP_USER_MPU | OCP_USER_SDMA,
58 .user = OCP_USER_MPU | OCP_USER_SDMA,
66 .user = OCP_USER_MPU | OCP_USER_SDMA,
74 .user = OCP_USER_MPU | OCP_USER_SDMA,
82 .user = OCP_USER_MPU,
89 .user = OCP_USER_MPU | OCP_USER_SDMA,
H A Domap_hwmod_2430_data.c380 .user = OCP_USER_MPU,
388 .user = OCP_USER_MPU | OCP_USER_SDMA,
396 .user = OCP_USER_MPU | OCP_USER_SDMA,
404 .user = OCP_USER_MPU,
412 .user = OCP_USER_MPU | OCP_USER_SDMA,
420 .user = OCP_USER_MPU | OCP_USER_SDMA,
428 .user = OCP_USER_MPU | OCP_USER_SDMA,
436 .user = OCP_USER_MPU | OCP_USER_SDMA,
444 .user = OCP_USER_MPU | OCP_USER_SDMA,
452 .user
[all...]
/third_party/typescript/tests/baselines/reference/
H A DcontrolFlowBreakContinueWithLabel.js4 let user: User = User.A
7 switch (user) {
9 user = User.B;
15 user;
25 var user = User.A; variable
27 switch (user) {
29 user = User.B;
35 user;
/foundation/communication/netstack/frameworks/native/websocket_client/
H A Dwebsocket_client.cpp76 int HttpDummy(lws *wsi, lws_callback_reasons reason, void *user, void *in, size_t len) in HttpDummy() argument
78 int ret = lws_callback_http_dummy(wsi, reason, user, in, len); in HttpDummy()
84 int (*callback)(lws *wsi, lws_callback_reasons reason, void *user, void *in, size_t len);
87 int LwsCallbackClientAppendHandshakeHeader(lws *wsi, lws_callback_reasons reason, void *user, void *in, size_t len) in LwsCallbackClientAppendHandshakeHeader() argument
89 WebSocketClient *client = static_cast<WebSocketClient *>(user); in LwsCallbackClientAppendHandshakeHeader()
109 return HttpDummy(wsi, reason, user, in, len); in LwsCallbackClientAppendHandshakeHeader()
112 int LwsCallbackWsPeerInitiatedClose(lws *wsi, lws_callback_reasons reason, void *user, void *in, size_t len) in LwsCallbackWsPeerInitiatedClose() argument
114 WebSocketClient *client = static_cast<WebSocketClient *>(user); in LwsCallbackWsPeerInitiatedClose()
123 return HttpDummy(wsi, reason, user, in, len); in LwsCallbackWsPeerInitiatedClose()
129 return HttpDummy(wsi, reason, user, i in LwsCallbackWsPeerInitiatedClose()
132 LwsCallbackClientWritable(lws *wsi, lws_callback_reasons reason, void *user, void *in, size_t len) LwsCallbackClientWritable() argument
172 LwsCallbackClientConnectionError(lws *wsi, lws_callback_reasons reason, void *user, void *in, size_t len) LwsCallbackClientConnectionError() argument
186 LwsCallbackClientReceive(lws *wsi, lws_callback_reasons reason, void *user, void *in, size_t len) LwsCallbackClientReceive() argument
217 LwsCallbackClientFilterPreEstablish(lws *wsi, lws_callback_reasons reason, void *user, void *in, size_t len) LwsCallbackClientFilterPreEstablish() argument
238 LwsCallbackClientEstablished(lws *wsi, lws_callback_reasons reason, void *user, void *in, size_t len) LwsCallbackClientEstablished() argument
254 LwsCallbackClientClosed(lws *wsi, lws_callback_reasons reason, void *user, void *in, size_t len) LwsCallbackClientClosed() argument
276 LwsCallbackWsiDestroy(lws *wsi, lws_callback_reasons reason, void *user, void *in, size_t len) LwsCallbackWsiDestroy() argument
287 LwsCallbackProtocolDestroy(lws *wsi, lws_callback_reasons reason, void *user, void *in, size_t len) LwsCallbackProtocolDestroy() argument
293 LwsCallbackVhostCertAging(lws *wsi, lws_callback_reasons reason, void *user, void *in, size_t len) LwsCallbackVhostCertAging() argument
299 LwsCallback(lws *wsi, lws_callback_reasons reason, void *user, void *in, size_t len) LwsCallback() argument
[all...]
/third_party/node/deps/openssl/openssl/apps/
H A Dsrp.c122 static char *srp_verify_user(const char *user, const char *srp_verifier, in srp_verify_user() argument
132 cb_tmp.prompt_info = user; in srp_verify_user()
140 "Validating\n user=\"%s\"\n srp_verifier=\"%s\"\n srp_usersalt=\"%s\"\n g=\"%s\"\n N=\"%s\"\n", in srp_verify_user()
141 user, srp_verifier, srp_usersalt, g, N); in srp_verify_user()
146 if ((gNid = SRP_create_verifier(user, password, &srp_usersalt, in srp_verify_user()
159 static char *srp_create_user(char *user, char **srp_verifier, in srp_create_user() argument
168 cb_tmp.prompt_info = user; in srp_create_user()
175 BIO_printf(bio_err, "Creating\n user=\"%s\"\n g=\"%s\"\n N=\"%s\"\n", in srp_create_user()
176 user, g, N); in srp_create_user()
177 if ((gNid = SRP_create_verifier(user, passwor in srp_create_user()
239 char *user = NULL, *passinarg = NULL, *passoutarg = NULL; srp_main() local
[all...]
/third_party/openssl/apps/
H A Dsrp.c122 static char *srp_verify_user(const char *user, const char *srp_verifier, in srp_verify_user() argument
132 cb_tmp.prompt_info = user; in srp_verify_user()
140 "Validating\n user=\"%s\"\n srp_verifier=\"%s\"\n srp_usersalt=\"%s\"\n g=\"%s\"\n N=\"%s\"\n", in srp_verify_user()
141 user, srp_verifier, srp_usersalt, g, N); in srp_verify_user()
146 if ((gNid = SRP_create_verifier(user, password, &srp_usersalt, in srp_verify_user()
159 static char *srp_create_user(char *user, char **srp_verifier, in srp_create_user() argument
168 cb_tmp.prompt_info = user; in srp_create_user()
175 BIO_printf(bio_err, "Creating\n user=\"%s\"\n g=\"%s\"\n N=\"%s\"\n", in srp_create_user()
176 user, g, N); in srp_create_user()
177 if ((gNid = SRP_create_verifier(user, passwor in srp_create_user()
239 char *user = NULL, *passinarg = NULL, *passoutarg = NULL; srp_main() local
[all...]
/kernel/linux/linux-6.6/arch/arm/mach-omap2/
H A Domap_hwmod_2430_data.c380 .user = OCP_USER_MPU,
388 .user = OCP_USER_MPU | OCP_USER_SDMA,
396 .user = OCP_USER_MPU | OCP_USER_SDMA,
404 .user = OCP_USER_MPU,
412 .user = OCP_USER_MPU | OCP_USER_SDMA,
420 .user = OCP_USER_MPU | OCP_USER_SDMA,
428 .user = OCP_USER_MPU | OCP_USER_SDMA,
436 .user = OCP_USER_MPU | OCP_USER_SDMA,
444 .user = OCP_USER_MPU | OCP_USER_SDMA,
452 .user
[all...]
/kernel/linux/linux-5.10/net/bridge/netfilter/
H A Debt_mark_m.c48 const struct compat_ebt_mark_m_info *user = src; in mark_mt_compat_from_user() local
51 kern->mark = user->mark; in mark_mt_compat_from_user()
52 kern->mask = user->mask; in mark_mt_compat_from_user()
53 kern->invert = user->invert; in mark_mt_compat_from_user()
54 kern->bitmask = user->bitmask; in mark_mt_compat_from_user()
59 struct compat_ebt_mark_m_info __user *user = dst; in mark_mt_compat_to_user() local
62 if (put_user(kern->mark, &user->mark) || in mark_mt_compat_to_user()
63 put_user(kern->mask, &user->mask) || in mark_mt_compat_to_user()
64 put_user(kern->invert, &user->invert) || in mark_mt_compat_to_user()
65 put_user(kern->bitmask, &user in mark_mt_compat_to_user()
[all...]
/kernel/linux/linux-6.6/net/bridge/netfilter/
H A Debt_mark_m.c48 const struct compat_ebt_mark_m_info *user = src; in mark_mt_compat_from_user() local
51 kern->mark = user->mark; in mark_mt_compat_from_user()
52 kern->mask = user->mask; in mark_mt_compat_from_user()
53 kern->invert = user->invert; in mark_mt_compat_from_user()
54 kern->bitmask = user->bitmask; in mark_mt_compat_from_user()
59 struct compat_ebt_mark_m_info __user *user = dst; in mark_mt_compat_to_user() local
62 if (put_user(kern->mark, &user->mark) || in mark_mt_compat_to_user()
63 put_user(kern->mask, &user->mask) || in mark_mt_compat_to_user()
64 put_user(kern->invert, &user->invert) || in mark_mt_compat_to_user()
65 put_user(kern->bitmask, &user in mark_mt_compat_to_user()
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvif/
H A Duser.c22 #include <nvif/user.h>
30 if (device->user.func) { in nvif_user_dtor()
31 nvif_object_dtor(&device->user.object); in nvif_user_dtor()
32 device->user.func = NULL; in nvif_user_dtor()
49 if (device->user.func) in nvif_user_ctor()
58 &device->user.object); in nvif_user_ctor()
62 nvif_object_map(&device->user.object, NULL, 0); in nvif_user_ctor()
63 device->user.func = users[cid].func; in nvif_user_ctor()
H A Duserc361.c22 #include <nvif/user.h>
25 nvif_userc361_time(struct nvif_user *user) in nvif_userc361_time() argument
30 hi = nvif_rd32(&user->object, 0x084); in nvif_userc361_time()
31 lo = nvif_rd32(&user->object, 0x080); in nvif_userc361_time()
32 } while (hi != nvif_rd32(&user->object, 0x084)); in nvif_userc361_time()
38 nvif_userc361_doorbell(struct nvif_user *user, u32 token) in nvif_userc361_doorbell() argument
40 nvif_wr32(&user->object, 0x90, token); in nvif_userc361_doorbell()
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/nvif/
H A Duser.c22 #include <nvif/user.h>
30 if (device->user.func) { in nvif_user_dtor()
31 nvif_object_dtor(&device->user.object); in nvif_user_dtor()
32 device->user.func = NULL; in nvif_user_dtor()
51 if (device->user.func) in nvif_user_ctor()
60 &device->user.object); in nvif_user_ctor()
64 nvif_object_map(&device->user.object, NULL, 0); in nvif_user_ctor()
65 device->user.func = users[cid].func; in nvif_user_ctor()
/base/sensors/sensor/frameworks/native/src/
H A Dsensor_agent_proxy.cpp146 int32_t SensorAgentProxy::ActivateSensor(int32_t sensorId, const SensorUser *user) in ActivateSensor() argument
148 CHKPR(user, OHOS::Sensors::ERROR); in ActivateSensor()
149 CHKPR(user->callback, OHOS::Sensors::ERROR); in ActivateSensor()
164 if (subscribeSet.find(user) == subscribeSet.end()) { in ActivateSensor()
165 SEN_HILOGE("Subscribe user first"); in ActivateSensor()
173 subscribeSet.erase(user); in ActivateSensor()
182 int32_t SensorAgentProxy::DeactivateSensor(int32_t sensorId, const SensorUser *user) in DeactivateSensor() argument
184 CHKPR(user, OHOS::Sensors::ERROR); in DeactivateSensor()
185 CHKPR(user->callback, OHOS::Sensors::ERROR); in DeactivateSensor()
196 if (subscribeSet.find(user) in DeactivateSensor()
216 SetBatch(int32_t sensorId, const SensorUser *user, int64_t samplingInterval, int64_t reportInterval) SetBatch() argument
243 SubscribeSensor(int32_t sensorId, const SensorUser *user) SubscribeSensor() argument
268 UnsubscribeSensor(int32_t sensorId, const SensorUser *user) UnsubscribeSensor() argument
304 SetMode(int32_t sensorId, const SensorUser *user, int32_t mode) SetMode() argument
[all...]
/kernel/linux/linux-5.10/security/keys/
H A Dkey.c48 * Get the key quota record for a user, allocating a new record if one doesn't
53 struct key_user *candidate = NULL, *user; in key_user_lookup() local
61 /* search the tree for a user record with a matching UID */ in key_user_lookup()
64 user = rb_entry(parent, struct key_user, node); in key_user_lookup()
66 if (uid_lt(uid, user->uid)) in key_user_lookup()
68 else if (uid_gt(uid, user->uid)) in key_user_lookup()
76 /* allocate a candidate user record if we don't already have in key_user_lookup()
80 user = NULL; in key_user_lookup()
91 /* if we get here, then the user record still hadn't appeared on the in key_user_lookup()
105 user in key_user_lookup()
120 key_user_put(struct key_user *user) key_user_put() argument
230 struct key_user *user = NULL; key_alloc() local
[all...]
/kernel/linux/linux-6.6/security/keys/
H A Dkey.c48 * Get the key quota record for a user, allocating a new record if one doesn't
53 struct key_user *candidate = NULL, *user; in key_user_lookup() local
61 /* search the tree for a user record with a matching UID */ in key_user_lookup()
64 user = rb_entry(parent, struct key_user, node); in key_user_lookup()
66 if (uid_lt(uid, user->uid)) in key_user_lookup()
68 else if (uid_gt(uid, user->uid)) in key_user_lookup()
76 /* allocate a candidate user record if we don't already have in key_user_lookup()
80 user = NULL; in key_user_lookup()
91 /* if we get here, then the user record still hadn't appeared on the in key_user_lookup()
105 user in key_user_lookup()
120 key_user_put(struct key_user *user) key_user_put() argument
230 struct key_user *user = NULL; key_alloc() local
[all...]
/third_party/typescript/tests/baselines/reference/tscWatch/programUpdates/updates-errors-in-lib-file/when-module-file-with-global-definitions-changes/
H A Dwith-skipDefaultLibCheck.js2 //// [/user/username/projects/myproject/a.ts]
28 /a/lib/tsc.js -w /user/username/projects/myproject/a.ts --skipDefaultLibCheck
42 Program root files: ["/user/username/projects/myproject/a.ts"]
47 /user/username/projects/myproject/a.ts
51 /user/username/projects/myproject/a.ts
55 /user/username/projects/myproject/a.ts (used version)
58 /user/username/projects/myproject/node_modules/@types:
62 /user/username/projects/myproject/a.ts:
71 //// [/user/username/projects/myproject/a.js]
80 //// [/user/usernam
[all...]
H A Dwith-skipLibCheck.js2 //// [/user/username/projects/myproject/a.ts]
28 /a/lib/tsc.js -w /user/username/projects/myproject/a.ts --skipLibCheck
42 Program root files: ["/user/username/projects/myproject/a.ts"]
47 /user/username/projects/myproject/a.ts
51 /user/username/projects/myproject/a.ts
55 /user/username/projects/myproject/a.ts (used version)
58 /user/username/projects/myproject/node_modules/@types:
62 /user/username/projects/myproject/a.ts:
71 //// [/user/username/projects/myproject/a.js]
80 //// [/user/usernam
[all...]
/third_party/typescript/tests/baselines/reference/tscWatch/programUpdates/updates-errors-in-lib-file/when-non-module-file-changes/
H A Dwith-skipDefaultLibCheck.js2 //// [/user/username/projects/myproject/a.ts]
25 /a/lib/tsc.js -w /user/username/projects/myproject/a.ts --skipDefaultLibCheck
39 Program root files: ["/user/username/projects/myproject/a.ts"]
44 /user/username/projects/myproject/a.ts
48 /user/username/projects/myproject/a.ts
52 /user/username/projects/myproject/a.ts (used version)
55 /user/username/projects/myproject/node_modules/@types:
59 /user/username/projects/myproject/a.ts:
68 //// [/user/username/projects/myproject/a.js]
76 //// [/user/usernam
[all...]
H A Dwith-skipLibCheck.js2 //// [/user/username/projects/myproject/a.ts]
25 /a/lib/tsc.js -w /user/username/projects/myproject/a.ts --skipLibCheck
39 Program root files: ["/user/username/projects/myproject/a.ts"]
44 /user/username/projects/myproject/a.ts
48 /user/username/projects/myproject/a.ts
52 /user/username/projects/myproject/a.ts (used version)
55 /user/username/projects/myproject/node_modules/@types:
59 /user/username/projects/myproject/a.ts:
68 //// [/user/username/projects/myproject/a.js]
76 //// [/user/usernam
[all...]
/base/sensors/medical_sensor/interfaces/native/include/
H A Dmedical_native_impl.h64 * @param user Indicates the pointer to the sensor subscriber that requests sensor data. For details,
70 int32_t SubscribeSensor(int32_t sensorTypeId, const MedicalSensorUser *user);
75 * @param user Indicates the pointer to the sensor subscriber that requests sensor data.
81 int32_t UnsubscribeSensor(int32_t sensorTypeId, const MedicalSensorUser *user);
86 * @param user Indicates the pointer to the sensor subscriber that requests sensor data.
94 int32_t SetBatch(int32_t sensorTypeId, const MedicalSensorUser *user, int64_t samplingInterval, int64_t reportInterval);
100 * @param user Indicates the pointer to the sensor subscriber that requests sensor data.
106 int32_t ActivateSensor(int32_t sensorTypeId, const MedicalSensorUser *user);
111 * @param user Indicates the pointer to the sensor subscriber that requests sensor data.
117 int32_t DeactivateSensor(int32_t sensorTypeId, const MedicalSensorUser *user);
[all...]
/kernel/linux/linux-5.10/drivers/mtd/nand/raw/atmel/
H A Dpmecc.h58 void atmel_pmecc_destroy_user(struct atmel_pmecc_user *user);
61 int atmel_pmecc_enable(struct atmel_pmecc_user *user, int op);
62 void atmel_pmecc_disable(struct atmel_pmecc_user *user);
63 int atmel_pmecc_wait_rdy(struct atmel_pmecc_user *user);
64 int atmel_pmecc_correct_sector(struct atmel_pmecc_user *user, int sector,
66 bool atmel_pmecc_correct_erased_chunks(struct atmel_pmecc_user *user);
67 void atmel_pmecc_get_generated_eccbytes(struct atmel_pmecc_user *user,
/kernel/linux/linux-6.6/drivers/mtd/nand/raw/atmel/
H A Dpmecc.h58 void atmel_pmecc_destroy_user(struct atmel_pmecc_user *user);
61 int atmel_pmecc_enable(struct atmel_pmecc_user *user, int op);
62 void atmel_pmecc_disable(struct atmel_pmecc_user *user);
63 int atmel_pmecc_wait_rdy(struct atmel_pmecc_user *user);
64 int atmel_pmecc_correct_sector(struct atmel_pmecc_user *user, int sector,
66 bool atmel_pmecc_correct_erased_chunks(struct atmel_pmecc_user *user);
67 void atmel_pmecc_get_generated_eccbytes(struct atmel_pmecc_user *user,

Completed in 9 milliseconds

12345678910>>...115