Home
last modified time | relevance | path

Searched refs:user (Results 76 - 100 of 2642) sorted by relevance

12345678910>>...106

/third_party/typescript/tests/baselines/reference/tsbuildWatch/programUpdates/
H A Dwhen-referenced-using-prepend-builds-referencing-project-even-for-non-local-change.js15 //// [/user/username/projects/sample1/core/tsconfig.json]
18 //// [/user/username/projects/sample1/core/index.ts]
21 //// [/user/username/projects/sample1/logic/tsconfig.json]
24 //// [/user/username/projects/sample1/logic/index.ts]
37 Program root files: ["/user/username/projects/sample1/core/index.ts"]
38 Program options: {"composite":true,"declaration":true,"outFile":"/user/username/projects/sample1/core/index.js","watch":true,"configFilePath":"/user/username/projects/sample1/core/tsconfig.json"}
42 /user/username/projects/sample1/core/index.ts
48 Program root files: ["/user/username/projects/sample1/logic/index.ts"]
49 Program options: {"composite":true,"declaration":true,"outFile":"/user/usernam
[all...]
/base/sensors/sensor/test/unittest/interfaces/inner_api/
H A Dposture_test.cpp140 SensorUser user; in HWTEST_F() local
141 user.callback = PostureDataCallbackImpl; in HWTEST_F()
142 int32_t ret = ActivateSensor(-1, &user); in HWTEST_F()
151 SensorUser user; in HWTEST_F() local
152 user.callback = nullptr; in HWTEST_F()
153 int32_t ret = ActivateSensor(SENSOR_TYPE_ID_POSTURE, &user); in HWTEST_F()
171 SensorUser user; in HWTEST_F() local
172 user.callback = PostureDataCallbackImpl; in HWTEST_F()
173 int32_t ret = DeactivateSensor(-1, &user); in HWTEST_F()
182 SensorUser user; in HWTEST_F() local
202 SensorUser user; HWTEST_F() local
213 SensorUser user; HWTEST_F() local
224 SensorUser user; HWTEST_F() local
244 SensorUser user; HWTEST_F() local
255 SensorUser user; HWTEST_F() local
275 SensorUser user; HWTEST_F() local
286 SensorUser user; HWTEST_F() local
297 SensorUser user; HWTEST_F() local
318 SensorUser user; HWTEST_F() local
[all...]
H A Dsensor_power_test.cpp162 SensorUser user; in HWTEST_F() local
163 user.callback = SensorDataCallbackImpl; in HWTEST_F()
165 int32_t ret = SubscribeSensor(SENSOR_ID, &user); in HWTEST_F()
167 ret = SetBatch(SENSOR_ID, &user, 100000000, 0); in HWTEST_F()
169 ret = ActivateSensor(SENSOR_ID, &user); in HWTEST_F()
181 ret = DeactivateSensor(SENSOR_ID, &user); in HWTEST_F()
183 ret = UnsubscribeSensor(SENSOR_ID, &user); in HWTEST_F()
190 SensorUser user; in HWTEST_F() local
191 user.callback = SensorDataCallbackImpl; in HWTEST_F()
193 int32_t ret = SubscribeSensor(SENSOR_ID, &user); in HWTEST_F()
229 SensorUser user; HWTEST_F() local
264 SensorUser user; HWTEST_F() local
304 SensorUser user; HWTEST_F() local
[all...]
/third_party/skia/third_party/externals/freetype/src/base/
H A Dftbbox.c71 * in `user->last'. We also update bbox in case contour starts with
79 * user ::
87 TBBox_Rec* user ) in BBox_Move_To()
89 FT_UPDATE_BBOX( to, user->bbox ); in BBox_Move_To()
91 user->last = *to; in BBox_Move_To()
105 * in `user->last'; no further computations are necessary because
113 * user ::
121 TBBox_Rec* user ) in BBox_Line_To()
123 user->last = *to; in BBox_Line_To()
198 * user
512 TBBox_Rec user; FT_EXPORT_DEF() local
[all...]
/third_party/node/test/parallel/
H A Dtest-process-cpuUsage.js18 assert(thisUsage.user >= lastUsage.user);
31 assert(diffUsage.user >= 0);
49 { user: 'a' },
50 { user: null, system: 'c' },
57 message: 'The "prevValue.user" property must be of type number.' +
58 common.invalidArgTypeHelper(value.user)
64 { user: 3, system: 'b' },
65 { user: 3, system: null },
80 { user
[all...]
/base/sensors/sensor_lite/frameworks/src/
H A Dsensor_agent.c28 int32_t ActivateSensor(int32_t sensorTypeId, SensorUser *user) in ActivateSensor() argument
33 return ActivateSensorByProxy(g_proxy, sensorTypeId, user); in ActivateSensor()
36 int32_t DeactivateSensor(int32_t sensorTypeId, SensorUser *user) in DeactivateSensor() argument
41 return DeactivateSensorByProxy(g_proxy, sensorTypeId, user); in DeactivateSensor()
44 int32_t SetBatch(int32_t sensorTypeId, SensorUser *user, int64_t samplingInterval, int64_t reportInterval) in SetBatch() argument
49 return SetBatchByProxy(g_proxy, sensorTypeId, user, samplingInterval, reportInterval); in SetBatch()
52 int32_t SubscribeSensor(int32_t sensorTypeId, SensorUser *user) in SubscribeSensor() argument
57 return SubscribeSensorByProxy(g_proxy, sensorTypeId, user); in SubscribeSensor()
60 int32_t UnsubscribeSensor(int32_t sensorTypeId, SensorUser *user) in UnsubscribeSensor() argument
65 return UnsubscribeSensorByProxy(g_proxy, sensorTypeId, user); in UnsubscribeSensor()
68 SetMode(int32_t sensorTypeId, SensorUser *user, int32_t mode) SetMode() argument
76 SetOption(int32_t sensorTypeId, SensorUser *user, int32_t option) SetOption() argument
[all...]
/kernel/linux/linux-6.6/drivers/fsi/
H A Dfsi-sbefifo.c782 static void sbefifo_release_command(struct sbefifo_user *user) in sbefifo_release_command() argument
784 if (is_vmalloc_addr(user->pending_cmd)) in sbefifo_release_command()
785 vfree(user->pending_cmd); in sbefifo_release_command()
786 user->pending_cmd = NULL; in sbefifo_release_command()
787 user->pending_len = 0; in sbefifo_release_command()
793 struct sbefifo_user *user; in sbefifo_user_open() local
795 user = kzalloc(sizeof(struct sbefifo_user), GFP_KERNEL); in sbefifo_user_open()
796 if (!user) in sbefifo_user_open()
799 file->private_data = user; in sbefifo_user_open()
800 user in sbefifo_user_open()
816 struct sbefifo_user *user = file->private_data; sbefifo_user_read() local
871 struct sbefifo_user *user = file->private_data; sbefifo_user_write() local
933 struct sbefifo_user *user = file->private_data; sbefifo_user_release() local
945 sbefifo_cmd_timeout(struct sbefifo_user *user, void __user *argp) sbefifo_cmd_timeout() argument
964 sbefifo_read_timeout(struct sbefifo_user *user, void __user *argp) sbefifo_read_timeout() argument
985 struct sbefifo_user *user = file->private_data; sbefifo_user_ioctl() local
[all...]
/kernel/linux/linux-5.10/include/linux/
H A Dipmi.h27 * Opaque type for a IPMI message user. One of these is needed to
48 struct ipmi_user *user; member
57 * be NULL. If the user above is NULL, then this will be the
91 * this is NULL, it will be ignored for the user.
103 * the user handle will be invalid. The interface may or may
110 /* Create a new user of the IPMI layer on the given interface number. */
114 struct ipmi_user **user);
117 * Destroy the given user of the IPMI layer. Note that after this
119 * callbacks for the user. Thus as long as you destroy all the users
124 int ipmi_destroy_user(struct ipmi_user *user);
[all...]
/kernel/linux/linux-6.6/include/linux/
H A Dipmi.h27 * Opaque type for a IPMI message user. One of these is needed to
48 struct ipmi_user *user; member
57 * be NULL. If the user above is NULL, then this will be the
96 * this is NULL, it will be ignored for the user.
108 * the user handle will be invalid. The interface may or may
115 /* Create a new user of the IPMI layer on the given interface number. */
119 struct ipmi_user **user);
122 * Destroy the given user of the IPMI layer. Note that after this
124 * callbacks for the user. Thus as long as you destroy all the users
129 int ipmi_destroy_user(struct ipmi_user *user);
[all...]
/kernel/linux/linux-5.10/arch/arm/mach-omap2/
H A Domap_hwmod_44xx_data.c636 .user = OCP_USER_SDMA,
644 .user = OCP_USER_MPU,
652 .user = OCP_USER_MPU | OCP_USER_SDMA,
660 .user = OCP_USER_MPU | OCP_USER_SDMA,
668 .user = OCP_USER_MPU | OCP_USER_SDMA,
676 .user = OCP_USER_MPU | OCP_USER_SDMA,
684 .user = OCP_USER_MPU | OCP_USER_SDMA,
692 .user = OCP_USER_MPU,
700 .user = OCP_USER_MPU | OCP_USER_SDMA,
708 .user
[all...]
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_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...]
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,
/third_party/typescript/tests/baselines/reference/
H A DcheckJsxChildrenProperty4.js9 children: (user: IUser) => JSX.Element;
24 { user => (
25 <h1>{ user.NAme }</h1>
37 { user => (
38 <h1>{ user.Name }</h1>
40 { user => (
41 <h1>{ user.Name }</h1>
81 {function (user) { return (<h1>{user.NAme}</h1>); }}
89 {function (user) { retur
[all...]
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;
/third_party/typescript/tests/baselines/reference/tscWatch/sourceOfProjectReferenceRedirect/
H A Dwith-simple-project-when-solution-is-already-built.js17 //// [/user/username/projects/demo/tsconfig-base.json]
32 //// [/user/username/projects/demo/core/utilities.ts]
45 //// [/user/username/projects/demo/core/tsconfig.json]
54 //// [/user/username/projects/demo/animals/animal.ts]
61 //// [/user/username/projects/demo/animals/dog.ts]
82 //// [/user/username/projects/demo/animals/index.ts]
90 //// [/user/username/projects/demo/animals/tsconfig.json]
103 //// [/user/username/projects/demo/lib/core/utilities.js]
119 //// [/user/username/projects/demo/lib/core/utilities.d.ts]
124 //// [/user/usernam
[all...]
/third_party/skia/src/gpu/
H A DGrStencilSettings.cpp27 void GrStencilSettings::reset(const GrUserStencilSettings& user, bool hasStencilClip, in reset() argument
29 uint16_t cwFlags = user.fCWFlags[hasStencilClip]; in reset()
31 SkASSERT(cwFlags == user.fCCWFlags[hasStencilClip]); in reset()
34 fCWFace.reset(user.fCWFace, hasStencilClip, numStencilBits); in reset()
39 uint16_t ccwFlags = user.fCCWFlags[hasStencilClip]; in reset()
45 fCWFace.reset(user.fCWFace, hasStencilClip, numStencilBits); in reset()
50 fCCWFace.reset(user.fCCWFace, hasStencilClip, numStencilBits); in reset()
138 // Ops that only modify user bits.
152 // Ops that modify clip and user bits.
171 void GrStencilSettings::Face::reset(const GrUserStencilSettings::Face& user, boo argument
[all...]
/kernel/linux/linux-5.10/arch/m68k/ifpsp060/
H A Dos.S57 | Each IO routine checks to see if the memory write/read is to/from user
60 | for user mode applications.
71 | working in user space
80 | a1 - user destination address
82 | 0x4(%a6),bit5 - 1 = supervisor mode, 0 = user mode
110 | a0 - user source address
113 | 0x4(%a6),bit5 - 1 = supervisor mode, 0 = user mode
140 | Read a data byte from user memory.
143 | a0 - user source address
144 | 0x4(%a6),bit5 - 1 = supervisor mode, 0 = user mod
[all...]
/kernel/linux/linux-6.6/arch/m68k/ifpsp060/
H A Dos.S57 | Each IO routine checks to see if the memory write/read is to/from user
60 | for user mode applications.
71 | working in user space
80 | a1 - user destination address
82 | 0x4(%a6),bit5 - 1 = supervisor mode, 0 = user mode
110 | a0 - user source address
113 | 0x4(%a6),bit5 - 1 = supervisor mode, 0 = user mode
140 | Read a data byte from user memory.
143 | a0 - user source address
144 | 0x4(%a6),bit5 - 1 = supervisor mode, 0 = user mod
[all...]
/third_party/selinux/libselinux/src/
H A Dget_context_list.c14 int get_default_context_with_role(const char *user, in get_default_context_with_role() argument
25 rc = get_ordered_context_list(user, fromcon, &conary); in get_default_context_with_role()
56 int get_default_context_with_rolelevel(const char *user, in get_default_context_with_rolelevel() argument
69 return get_default_context_with_role(user, role, fromcon, in get_default_context_with_rolelevel()
91 rc = get_default_context_with_role(user, role, newfromcon, newcon); in get_default_context_with_rolelevel()
100 int get_default_context(const char *user, in get_default_context() argument
106 rc = get_ordered_context_list(user, fromcon, &conary); in get_default_context()
132 const char * user, in get_context_user()
139 size_t user_len = strlen(user); in get_context_user()
240 snprintf(usercon_str, usercon_len, "%s:%s", user, star in get_context_user()
130 get_context_user(FILE * fp, const char * fromcon, const char * user, char ***reachable, unsigned int *nreachable) get_context_user() argument
302 get_failsafe_context(const char *user, char ** newcon) get_failsafe_context() argument
347 get_ordered_context_list_with_level(const char *user, const char *level, const char *fromcon, char *** list) get_ordered_context_list_with_level() argument
388 get_default_context_with_level(const char *user, const char *level, const char *fromcon, char ** newcon) get_default_context_with_level() argument
407 get_ordered_context_list(const char *user, const char *fromcon, char *** list) get_ordered_context_list() argument
[all...]
/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...]
/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...]

Completed in 11 milliseconds

12345678910>>...106