Home
last modified time | relevance | path

Searched refs:user (Results 176 - 200 of 1222) sorted by relevance

12345678910>>...49

/third_party/curl/lib/
H A Dllist.c96 void *user) in Curl_llist_remove()
130 list->dtor(user, ptr); in Curl_llist_remove()
134 Curl_llist_destroy(struct Curl_llist *list, void *user) in Curl_llist_destroy() argument
138 Curl_llist_remove(list, list->tail, user); in Curl_llist_destroy()
95 Curl_llist_remove(struct Curl_llist *list, struct Curl_llist_element *e, void *user) Curl_llist_remove() argument
/third_party/ltp/testcases/kernel/syscalls/setsockopt/
H A Dsetsockopt08.c23 * the user specified ->u.user.target_size, which will be considered
26 * ->targetsize: if OTOH the user specified ->u.user.target_size is
65 * This code is based on the premise that the user sets the given
66 * ->u.user.match_size or ->u.user.target_size consistent to the
71 * independent of the actual values of ->u.user.match_size or
72 * ->u.user.target_size and the result ends up getting layed out with proper
121 xt_entry_match->u.user in run()
[all...]
/third_party/selinux/libselinux/utils/
H A Dgetconlist.c14 fprintf(stderr, "usage: %s [-l level] user [context]\n", name); in usage()
23 char *user = NULL, *level = NULL; in main() local
53 user = argv[optind]; in main()
74 get_ordered_context_list_with_level(user, level, in main()
77 ret = get_ordered_context_list(user, cur_context, &list); in main()
/third_party/libwebsockets/lib/misc/
H A Ddir.c115 lws_dir(const char *dirpath, void *user, lws_dir_callback_function cb) in lws_dir() argument
172 if (cb(dirpath, user, &lde)) { in lws_dir()
217 lws_dir_glob_cb(const char *dirpath, void *user, struct lws_dir_entry *lde) in lws_dir_glob_cb() argument
219 lws_dir_glob_t *filter = (lws_dir_glob_t*)user; in lws_dir_glob_cb()
231 filter->cb(filter->user, path); in lws_dir_glob_cb()
238 lws_dir_rm_rf_cb(const char *dirpath, void *user, struct lws_dir_entry *lde) in lws_dir_rm_rf_cb() argument
298 lws_plugins_dir_cb(const char *dirpath, void *user, struct lws_dir_entry *lde) in lws_plugins_dir_cb() argument
300 struct lws_plugins_args *pa = (struct lws_plugins_args *)user; in lws_plugins_dir_cb()
H A Dlws-struct-lejp.c33 lws_struct_args_t *a = (lws_struct_args_t *)ctx->user; in lws_struct_schema_only_lejp_cb()
144 lws_struct_args_t *args = (lws_struct_args_t *)ctx->user; in lws_struct_default_lejp_cb()
174 ctx->pst[ctx->pst_sp].user = NULL; in lws_struct_default_lejp_cb()
183 ctx->pst[ctx->pst_sp].user = NULL; in lws_struct_default_lejp_cb()
236 if (!ctx->pst[ctx->pst_sp].user) { in lws_struct_default_lejp_cb()
257 (((char *)ctx->pst[ctx->pst_sp - 1].user) + pmap->ofs); in lws_struct_default_lejp_cb()
263 ctx->pst[ctx->pst_sp].user = lwsac_use_zero(&args->ac, in lws_struct_default_lejp_cb()
265 if (!ctx->pst[ctx->pst_sp].user) { in lws_struct_default_lejp_cb()
276 ((char *)ctx->pst[ctx->pst_sp].user + in lws_struct_default_lejp_cb()
282 *((void **)owner) = ctx->pst[ctx->pst_sp].user; in lws_struct_default_lejp_cb()
479 lws_struct_json_init_parse(struct lejp_ctx *ctx, lejp_callback cb, void *user) lws_struct_json_init_parse() argument
[all...]
/third_party/mbedtls/library/
H A Dpsa_crypto_pake.c151 /* The only two JPAKE user/peer identifiers supported in built-in implementation. */
160 uint8_t *peer = NULL, *user = NULL; in mbedtls_psa_pake_setup() local
190 user = mbedtls_calloc(1, user_len); in mbedtls_psa_pake_setup()
191 if (user == NULL) { in mbedtls_psa_pake_setup()
208 status = psa_crypto_driver_pake_get_user(inputs, user, in mbedtls_psa_pake_setup()
240 if (memcmp(user, jpake_client_id, actual_user_len) == 0 && in mbedtls_psa_pake_setup()
244 if (memcmp(user, jpake_server_id, actual_user_len) == 0 && in mbedtls_psa_pake_setup()
260 /* Role has been set, release user/peer buffers. */ in mbedtls_psa_pake_setup()
261 mbedtls_free(user); mbedtls_free(peer); in mbedtls_psa_pake_setup()
272 mbedtls_free(user); mbedtls_fre in mbedtls_psa_pake_setup()
[all...]
/third_party/python/Lib/
H A Dpoplib.py58 USER name user(name)
82 NB: the POP protocol locks the mailbox from user
203 def user(self, user): member in POP3
204 """Send user name, return response
208 return self._shortcmd('USER %s' % user)
311 def rpop(self, user):
313 return self._shortcmd('RPOP %s' % user)
318 def apop(self, user, password):
324 user
[all...]
/third_party/spirv-tools/source/opt/
H A Deliminate_dead_output_stores_pass.cpp66 def_use_mgr->ForEachUser(ref, [this](Instruction* user) { in KillAllStoresOfRef()
67 if (user->opcode() == spv::Op::OpStore) kill_list_.push_back(user); in KillAllStoresOfRef()
219 var_id, [this, &var, is_builtin](Instruction* user) { in DoDeadOutputStoreElimination()
220 auto op = user->opcode(); in DoDeadOutputStoreElimination()
222 op == spv::Op::OpDecorate || user->IsNonSemanticInstruction()) in DoDeadOutputStoreElimination()
225 KillAllDeadStoresOfBuiltinRef(user, &var); in DoDeadOutputStoreElimination()
227 KillAllDeadStoresOfLocRef(user, &var); in DoDeadOutputStoreElimination()
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/
H A Dtransformation_propagate_instruction_down.cpp171 opt::Instruction* user, uint32_t operand_index) { in Apply()
172 assert(ir_context->get_instr_block(user) && in Apply()
176 fuzzerutil::InOperandIndexFromOperandIndex(*user, operand_index); in Apply()
178 if (fuzzerutil::IdIsAvailableAtUse(ir_context, user, in_operand_index, in Apply()
180 user->SetInOperand(in_operand_index, {id}); in Apply()
185 // Every user of |inst_to_propagate| must be updated since we will in Apply()
187 assert(false && "Every user of |inst_to_propagate| must be updated"); in Apply()
366 &*it, [ir_context, block](opt::Instruction* user) { in GetInstructionToPropagate()
367 return ir_context->get_instr_block(user) != block; in GetInstructionToPropagate()
437 opt::Instruction* user, uint32_ in IsApplicableToBlock()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/
H A Dtransformation_propagate_instruction_down.cpp171 opt::Instruction* user, uint32_t operand_index) { in Apply()
172 assert(ir_context->get_instr_block(user) && in Apply()
176 fuzzerutil::InOperandIndexFromOperandIndex(*user, operand_index); in Apply()
178 if (fuzzerutil::IdIsAvailableAtUse(ir_context, user, in_operand_index, in Apply()
180 user->SetInOperand(in_operand_index, {id}); in Apply()
185 // Every user of |inst_to_propagate| must be updated since we will in Apply()
187 assert(false && "Every user of |inst_to_propagate| must be updated"); in Apply()
366 &*it, [ir_context, block](opt::Instruction* user) { in GetInstructionToPropagate()
367 return ir_context->get_instr_block(user) != block; in GetInstructionToPropagate()
437 opt::Instruction* user, uint32_ in IsApplicableToBlock()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_server/
H A Deap_server_psk.c258 (sm->user->methods[i].vendor != EAP_VENDOR_IETF || in eap_psk_process_2()
259 sm->user->methods[i].method != EAP_TYPE_NONE); in eap_psk_process_2()
261 if (sm->user->methods[i].vendor == EAP_VENDOR_IETF && in eap_psk_process_2()
262 sm->user->methods[i].method == EAP_TYPE_PSK) in eap_psk_process_2()
267 sm->user->methods[i].vendor != EAP_VENDOR_IETF || in eap_psk_process_2()
268 sm->user->methods[i].method != EAP_TYPE_PSK) { in eap_psk_process_2()
276 if (sm->user->password == NULL || in eap_psk_process_2()
277 sm->user->password_len != EAP_PSK_PSK_LEN) { in eap_psk_process_2()
279 "user database for ID_P", in eap_psk_process_2()
284 if (eap_psk_key_setup(sm->user in eap_psk_process_2()
[all...]
H A Deap_server_gtc.c109 /* "RESPONSE=<user>\0<password>" */ in eap_gtc_process()
129 wpa_hexdump_ascii(MSG_MSGDUMP, "EAP-GTC: Response user", in eap_gtc_process()
153 "Identity not found in the user " in eap_gtc_process()
168 if (sm->user == NULL || sm->user->password == NULL || in eap_gtc_process()
169 sm->user->password_hash) { in eap_gtc_process()
176 if (rlen != sm->user->password_len || in eap_gtc_process()
177 os_memcmp_const(pos, sm->user->password, rlen) != 0) { in eap_gtc_process()
H A Deap_server_md5.c106 if (sm->user == NULL || sm->user->password == NULL || in eap_md5_process()
107 sm->user->password_hash) { in eap_md5_process()
122 if (chap_md5(id, sm->user->password, sm->user->password_len, in eap_md5_process()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_server/
H A Deap_server_psk.c258 (sm->user->methods[i].vendor != EAP_VENDOR_IETF || in eap_psk_process_2()
259 sm->user->methods[i].method != EAP_TYPE_NONE); in eap_psk_process_2()
261 if (sm->user->methods[i].vendor == EAP_VENDOR_IETF && in eap_psk_process_2()
262 sm->user->methods[i].method == EAP_TYPE_PSK) in eap_psk_process_2()
267 sm->user->methods[i].vendor != EAP_VENDOR_IETF || in eap_psk_process_2()
268 sm->user->methods[i].method != EAP_TYPE_PSK) { in eap_psk_process_2()
276 if (sm->user->password == NULL || in eap_psk_process_2()
277 sm->user->password_len != EAP_PSK_PSK_LEN) { in eap_psk_process_2()
279 "user database for ID_P", in eap_psk_process_2()
284 if (eap_psk_key_setup(sm->user in eap_psk_process_2()
[all...]
H A Deap_server_gtc.c109 /* "RESPONSE=<user>\0<password>" */ in eap_gtc_process()
129 wpa_hexdump_ascii(MSG_MSGDUMP, "EAP-GTC: Response user", in eap_gtc_process()
153 "Identity not found in the user " in eap_gtc_process()
168 if (sm->user == NULL || sm->user->password == NULL || in eap_gtc_process()
169 sm->user->password_hash) { in eap_gtc_process()
176 if (rlen != sm->user->password_len || in eap_gtc_process()
177 os_memcmp_const(pos, sm->user->password, rlen) != 0) { in eap_gtc_process()
/third_party/musl/Benchmark/musl/
H A Dlibc_grp.cpp30 const char *user = "root"; in Bm_function_Getgrouplist() local
31 struct passwd *pw = getpwnam(user); in Bm_function_Getgrouplist()
43 benchmark::DoNotOptimize(getgrouplist(user, pw->pw_gid, groups, &ngroups)); in Bm_function_Getgrouplist()
/third_party/skia/third_party/externals/spirv-tools/source/val/
H A Dvalidate_small_type_uses.cpp37 const auto* user = use.first; in ValidateSmallTypeUses() local
38 switch (user->opcode()) { in ValidateSmallTypeUses()
48 return _.diag(SPV_ERROR_INVALID_ID, user) in ValidateSmallTypeUses()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/
H A Dvalidate_small_type_uses.cpp37 const auto* user = use.first; in ValidateSmallTypeUses() local
38 switch (user->opcode()) { in ValidateSmallTypeUses()
48 return _.diag(SPV_ERROR_INVALID_ID, user) in ValidateSmallTypeUses()
/third_party/spirv-tools/source/val/
H A Dvalidate_small_type_uses.cpp37 const auto* user = use.first; in ValidateSmallTypeUses() local
38 switch (user->opcode()) { in ValidateSmallTypeUses()
48 return _.diag(SPV_ERROR_INVALID_ID, user) in ValidateSmallTypeUses()
/third_party/ffmpeg/libavformat/
H A Dicecast.c35 char *user; member
93 char *headers, *user = NULL; in icecast_open() local
147 if (!(user = av_strdup(auth))) { in icecast_open()
156 user ? user : DEFAULT_ICE_USER, in icecast_open()
175 av_freep(&user); in icecast_open()
/third_party/node/lib/
H A Dos.js133 * user: number,
151 user: data[i++],
362 const user = getUserInfo(options, ctx);
364 if (user === undefined)
368 user.uid |= 0;
369 user.gid |= 0;
372 return user;
/third_party/typescript/tests/baselines/reference/tsc/declarationEmit/
H A Dwhen-pkg-references-sibling-package-through-indirect-symlink-moduleCaseChange.js2 //// [/user/username/projects/myProject/pkg1/dist/index.d.ts]
5 //// [/user/username/projects/myProject/pkg1/dist/types.d.ts]
20 //// [/user/username/projects/myProject/pkg1/package.json]
23 //// [/user/username/projects/myproject/pkg2/dist/index.d.ts]
26 //// [/user/username/projects/myproject/pkg2/dist/types.d.ts]
29 //// [/user/username/projects/myproject/pkg2/package.json]
32 //// [/user/username/projects/myproject/pkg3/src/index.ts]
35 //// [/user/username/projects/myproject/pkg3/src/keys.ts]
39 //// [/user/username/projects/myproject/pkg3/tsconfig.json]
42 //// [/user/usernam
[all...]
H A Dwhen-pkg-references-sibling-package-through-indirect-symlink.js2 //// [/user/username/projects/myproject/pkg1/dist/index.d.ts]
5 //// [/user/username/projects/myproject/pkg1/dist/types.d.ts]
20 //// [/user/username/projects/myproject/pkg1/package.json]
23 //// [/user/username/projects/myproject/pkg2/dist/index.d.ts]
26 //// [/user/username/projects/myproject/pkg2/dist/types.d.ts]
29 //// [/user/username/projects/myproject/pkg2/package.json]
32 //// [/user/username/projects/myproject/pkg3/src/index.ts]
35 //// [/user/username/projects/myproject/pkg3/src/keys.ts]
39 //// [/user/username/projects/myproject/pkg3/tsconfig.json]
42 //// [/user/usernam
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_opt_copy_propagate.c87 nir_alu_instr *user = nir_instr_as_alu(src->src.parent_instr); in copy_propagate_alu() local
88 unsigned src_idx = src - user->src; in copy_propagate_alu()
89 assert(src_idx < nir_op_infos[user->op].num_inputs); in copy_propagate_alu()
90 unsigned num_comp = nir_ssa_alu_instr_src_components(user, src_idx); in copy_propagate_alu()
102 return rewrite_to_vec(impl, user, copy); in copy_propagate_alu()
/third_party/cups-filters/filter/
H A Dpcl-common.h55 #define pjl_set_job(job_id,user,title)\
57 (title), (job_id), (user), (title))
64 const char *user, const char *title,

Completed in 14 milliseconds

12345678910>>...49