/kernel/linux/linux-5.10/arch/um/drivers/ |
H A D | umcast_kern.c | 3 * user-mode-linux networking multicast transport 34 dpri = (struct umcast_data *) pri->user; in umcast_init() 60 (struct umcast_data *) &lp->user); in umcast_write() 165 .user = &umcast_user_info, 175 .user = &umcast_user_info,
|
/kernel/linux/linux-6.6/arch/um/drivers/ |
H A D | umcast_kern.c | 3 * user-mode-linux networking multicast transport 34 dpri = (struct umcast_data *) pri->user; in umcast_init() 60 (struct umcast_data *) &lp->user); in umcast_write() 165 .user = &umcast_user_info, 175 .user = &umcast_user_info,
|
/kernel/linux/linux-5.10/net/netfilter/ |
H A D | xt_limit.c | 88 static u32 user2credits(u32 user) in user2credits() argument 91 if (user > 0xFFFFFFFF / (HZ*CREDITS_PER_JIFFY)) in user2credits() 93 return (user / XT_LIMIT_SCALE) * HZ * CREDITS_PER_JIFFY; in user2credits() 95 return (user * HZ * CREDITS_PER_JIFFY) / XT_LIMIT_SCALE; in user2credits()
|
/kernel/linux/linux-5.10/scripts/package/ |
H A D | mkdebian | 99 packagename=user-mode-linux 114 user=${KBUILD_BUILD_USER-$(id -nu)} 115 name=${DEBFULLNAME-$user} 118 email="$user@$buildhost"
|
/kernel/linux/linux-5.10/net/ax25/ |
H A D | ax25_uid.c | 72 ax25_uid_assoc *user; in ax25_uid_ioctl() local 97 user = ax25_findbyuid(sax25_kuid); in ax25_uid_ioctl() 98 if (user) { in ax25_uid_ioctl() 99 ax25_uid_put(user); in ax25_uid_ioctl()
|
/kernel/linux/linux-6.6/net/ax25/ |
H A D | ax25_uid.c | 72 ax25_uid_assoc *user; in ax25_uid_ioctl() local 97 user = ax25_findbyuid(sax25_kuid); in ax25_uid_ioctl() 98 if (user) { in ax25_uid_ioctl() 99 ax25_uid_put(user); in ax25_uid_ioctl()
|
/kernel/linux/linux-6.6/net/netfilter/ |
H A D | nf_conntrack_ovs.c | 150 enum ip_defrag_users user = IP_DEFRAG_CONNTRACK_IN + zone; in nf_ct_handle_fragments() local 154 err = ip_defrag(net, skb, user); in nf_ct_handle_fragments() 162 enum ip6_defrag_users user = IP6_DEFRAG_CONNTRACK_IN + zone; in nf_ct_handle_fragments() local 165 err = nf_ct_frag6_gather(net, skb, user); in nf_ct_handle_fragments()
|
/kernel/linux/linux-6.6/net/ipv4/netfilter/ |
H A D | nf_defrag_ipv4.c | 27 u_int32_t user) in nf_ct_ipv4_gather_frags() 32 err = ip_defrag(net, skb, user); in nf_ct_ipv4_gather_frags() 84 enum ip_defrag_users user = in ipv4_conntrack_defrag() local 87 if (nf_ct_ipv4_gather_frags(state->net, skb, user)) in ipv4_conntrack_defrag() 26 nf_ct_ipv4_gather_frags(struct net *net, struct sk_buff *skb, u_int32_t user) nf_ct_ipv4_gather_frags() argument
|
/third_party/libwebsockets/minimal-examples/http-client/minimal-http-client-captive-portal/ |
H A D | minimal-http-client-captive-portal.c | 27 * this is the user code http handler 32 void *user, void *in, size_t len) in callback_http() 101 return lws_callback_http_dummy(wsi, reason, user, in, len); in callback_http() 110 void *user, void *in, size_t len) in callback_cpd_http() 154 return lws_callback_http_dummy(wsi, reason, user, in, len); in callback_cpd_http() 31 callback_http(struct lws *wsi, enum lws_callback_reasons reason, void *user, void *in, size_t len) callback_http() argument 109 callback_cpd_http(struct lws *wsi, enum lws_callback_reasons reason, void *user, void *in, size_t len) callback_cpd_http() argument
|
/third_party/libwebsockets/lib/secure-streams/protocols/ |
H A D | ss-h2.c | 28 secstream_h1(struct lws *wsi, enum lws_callback_reasons reason, void *user, 32 secstream_h2(struct lws *wsi, enum lws_callback_reasons reason, void *user, in secstream_h2() argument 59 n = secstream_h1(wsi, reason, user, in, len); in secstream_h2() 117 return secstream_h1(wsi, reason, user, in, len); in secstream_h2()
|
/third_party/node/deps/uvwasi/src/ |
H A D | clocks.c | 19 FILETIME user; \ 20 if (0 == get_times((handle), &create, &exit, &system, &user)) { \ 30 user.dwHighDateTime << 32 | user.dwLowDateTime) * 100); \
|
/third_party/pulseaudio/src/modules/raop/ |
H A D | raop-util.c | 174 int pa_raop_basic_response(const char *user, const char *pwd, char **str) { in pa_raop_basic_response() argument 179 tmp = pa_sprintf_malloc("%s:%s", user, pwd); in pa_raop_basic_response() 187 int pa_raop_digest_response(const char *user, const char *realm, const char *password, in pa_raop_digest_response() argument 194 A1 = pa_sprintf_malloc("%s:%s:%s", user, realm, password); in pa_raop_digest_response()
|
H A D | raop-util.h | 37 int pa_raop_basic_response(const char *user, const char *pwd, char **str); 38 int pa_raop_digest_response(const char *user, const char *realm, const char *password,
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | block_merge_util.cpp | 37 return !context->get_def_use_mgr()->WhileEachUse(id, [](Instruction* user, in IsMerge() 39 SpvOp op = user->opcode(); in IsMerge() 55 id, [](Instruction* user, uint32_t index) { in IsContinue() 56 SpvOp op = user->opcode(); in IsContinue()
|
H A D | local_single_block_elim_pass.cpp | 33 if (get_def_use_mgr()->WhileEachUser(ptrId, [this](Instruction* user) { in HasOnlySupportedRefs() 34 auto dbg_op = user->GetCommonDebugOpcode(); in HasOnlySupportedRefs() 39 SpvOp op = user->opcode(); in HasOnlySupportedRefs() 41 if (!HasOnlySupportedRefs(user->result_id())) { in HasOnlySupportedRefs()
|
H A D | private_to_local_pass.cpp | 170 inst, [this](const Instruction* user) { in IsValidUse() 171 if (!IsValidUse(user)) return false; in IsValidUse() 181 bool PrivateToLocalPass::UpdateUse(Instruction* inst, Instruction* user) { in UpdateUse() argument 187 user); in UpdateUse()
|
H A D | simplification_pass.cpp | 97 [](Instruction* user) { in SimplifyFunction() 98 const auto opcode = user->opcode(); in SimplifyFunction() 144 [](Instruction* user) { in SimplifyFunction() 145 const auto opcode = user->opcode(); in SimplifyFunction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | block_merge_util.cpp | 37 return !context->get_def_use_mgr()->WhileEachUse(id, [](Instruction* user, in IsMerge() 39 SpvOp op = user->opcode(); in IsMerge() 55 id, [](Instruction* user, uint32_t index) { in IsContinue() 56 SpvOp op = user->opcode(); in IsContinue()
|
H A D | local_single_block_elim_pass.cpp | 33 if (get_def_use_mgr()->WhileEachUser(ptrId, [this](Instruction* user) { in HasOnlySupportedRefs() 34 auto dbg_op = user->GetCommonDebugOpcode(); in HasOnlySupportedRefs() 39 SpvOp op = user->opcode(); in HasOnlySupportedRefs() 41 if (!HasOnlySupportedRefs(user->result_id())) { in HasOnlySupportedRefs()
|
H A D | private_to_local_pass.cpp | 170 inst, [this](const Instruction* user) { in IsValidUse() 171 if (!IsValidUse(user)) return false; in IsValidUse() 181 bool PrivateToLocalPass::UpdateUse(Instruction* inst, Instruction* user) { in UpdateUse() argument 187 user); in UpdateUse()
|
H A D | simplification_pass.cpp | 97 [](Instruction* user) { in SimplifyFunction() 98 const auto opcode = user->opcode(); in SimplifyFunction() 144 [](Instruction* user) { in SimplifyFunction() 145 const auto opcode = user->opcode(); in SimplifyFunction()
|
/third_party/rust/crates/nom/examples/ |
H A D | json_iterator.rs | 309 .filter_map(|(user, v)| v.object().map(|o| (user, o))) in hash() 310 .map(|(user, o)| { in hash() 312 .filter_map(move |(_, v)| v.string().map(|s| (user, s))) in hash()
|
/third_party/spirv-tools/source/opt/ |
H A D | simplification_pass.cpp | 96 [](Instruction* user) { in SimplifyFunction() 97 const auto opcode = user->opcode(); in SimplifyFunction() 143 [](Instruction* user) { in SimplifyFunction() 144 const auto opcode = user->opcode(); in SimplifyFunction()
|
/third_party/musl/src/misc/ |
H A D | initgroups.c | 5 int initgroups(const char *user, gid_t gid) in initgroups() argument 9 if (getgrouplist(user, gid, groups, &count) < 0) return -1; in initgroups()
|
/kernel/linux/linux-5.10/fs/proc/ |
H A D | stat.c | 110 u64 user, nice, system, idle, iowait, irq, softirq, steal; in show_stat() local 117 user = nice = system = idle = iowait = in show_stat() 128 user += cpustat[CPUTIME_USER]; in show_stat() 150 seq_put_decimal_ull(p, "cpu ", nsec_to_clock_t(user)); in show_stat() 169 user = cpustat[CPUTIME_USER]; in show_stat() 180 seq_put_decimal_ull(p, " ", nsec_to_clock_t(user)); in show_stat()
|