Home
last modified time | relevance | path

Searched refs:next (Results 2126 - 2150 of 12742) sorted by relevance

1...<<81828384858687888990>>...510

/foundation/multimedia/audio_framework/services/audio_policy/server/src/service/config/
H A Daudio_affinity_parser.cpp86 currNode = currNode->next; in ParseInternal()
106 currNode = currNode->next; in ParserAffinityGroups()
137 currNode = currNode->next; in ParserAffinityGroupAttribute()
172 currNode = currNode->next; in ParserAffinityGroupDeviceInfos()
/foundation/communication/dsoftbus/core/connection/manager/
H A Dsoftbus_conn_flow_control.c41 struct HistoryNode *next = NULL; in Apply() local
46 LIST_FOR_EACH_ENTRY_SAFE(it, next, &self->histories, struct HistoryNode, node) { in Apply()
81 struct HistoryNode *next = NULL; in CleanupHistoriesUnsafe() local
82 LIST_FOR_EACH_ENTRY_SAFE(it, next, &self->histories, struct HistoryNode, node) { in CleanupHistoriesUnsafe()
/foundation/communication/bluetooth_service/services/bluetooth/stack/platform/src/
H A Dlist.c57 ListNode *next = ListGetNextNode(node); in ListFreeNode() local
65 return next; in ListFreeNode()
130 ListNode *next = ListGetNextNode(node); in ListForEachData() local
134 node = next; in ListForEachData()
/kernel/linux/common_modules/code_sign/
H A Dverify_cert_chain.c44 cert = cert->next; in pkcs7_find_key()
51 cert = cert->next; in pkcs7_find_key()
159 for (sinfo = pkcs7->signed_infos; sinfo; sinfo = sinfo->next) { in code_sign_verify_certchain()
202 // move to next certificate in code_sign_verify_certchain()
203 cert = cert->next; in code_sign_verify_certchain()
/kernel/linux/linux-5.10/arch/xtensa/kernel/
H A Dtime.c64 unsigned long flags, next; in ccount_timer_set_next_event() local
68 next = get_ccount() + delta; in ccount_timer_set_next_event()
69 set_linux_timer(next); in ccount_timer_set_next_event()
70 if (next - get_ccount() > delta) in ccount_timer_set_next_event()
/kernel/linux/linux-5.10/drivers/cpufreq/
H A Dpxa3xx-cpufreq.c158 struct pxa3xx_freq_info *next; in pxa3xx_cpufreq_set() local
164 next = &pxa3xx_freqs[index]; in pxa3xx_cpufreq_set()
167 __update_core_freq(next); in pxa3xx_cpufreq_set()
168 __update_bus_freq(next); in pxa3xx_cpufreq_set()
/kernel/linux/linux-5.10/drivers/clocksource/
H A Dtimer-pxa.c81 unsigned long next, oscr; in pxa_osmr0_set_next_event() local
84 next = timer_readl(OSCR) + delta; in pxa_osmr0_set_next_event()
85 timer_writel(next, OSMR0); in pxa_osmr0_set_next_event()
88 return (signed)(next - oscr) <= MIN_OSCR_DELTA ? -ETIME : 0; in pxa_osmr0_set_next_event()
/kernel/linux/linux-5.10/drivers/isdn/capi/
H A Dkcapi_proc.c99 .next = controller_next,
106 .next = controller_next,
181 .next = applications_next,
188 .next = applications_next,
/kernel/linux/linux-5.10/drivers/gpu/drm/
H A Ddrm_vblank_work.c48 struct drm_vblank_work *work, *next; in drm_handle_vblank_works() local
54 list_for_each_entry_safe(work, next, &vblank->pending_work, node) { in drm_handle_vblank_works()
72 struct drm_vblank_work *work, *next; in drm_vblank_cancel_pending_works() local
76 list_for_each_entry_safe(work, next, &vblank->pending_work, node) { in drm_vblank_cancel_pending_works()
88 * @nextonmiss: defer until the next vblank if target vblank was missed
96 * %true the work is deferred until the next vblank (as if @count has been
/kernel/linux/linux-5.10/security/selinux/ss/
H A Debitmap.h35 struct ebitmap_node *next; member
52 for (*n = e->node; *n; *n = (*n)->next) { in ebitmap_start_positive()
75 for (*n = (*n)->next; *n; *n = (*n)->next) { in ebitmap_next_positive()
/kernel/linux/linux-5.10/fs/ubifs/
H A Dshrinker.c156 p = ubifs_infos.next; in shrink_tnc_trees()
166 /* Some un-mount is in progress, try next FS */ in shrink_tnc_trees()
168 p = p->next; in shrink_tnc_trees()
178 p = p->next; in shrink_tnc_trees()
190 /* Get the next list element before we move this one */ in shrink_tnc_trees()
191 p = p->next; in shrink_tnc_trees()
/kernel/linux/linux-6.6/fs/ubifs/
H A Dshrinker.c156 p = ubifs_infos.next; in shrink_tnc_trees()
166 /* Some un-mount is in progress, try next FS */ in shrink_tnc_trees()
168 p = p->next; in shrink_tnc_trees()
178 p = p->next; in shrink_tnc_trees()
190 /* Get the next list element before we move this one */ in shrink_tnc_trees()
191 p = p->next; in shrink_tnc_trees()
/kernel/linux/linux-6.6/drivers/clocksource/
H A Dtimer-pxa.c81 unsigned long next, oscr; in pxa_osmr0_set_next_event() local
84 next = timer_readl(OSCR) + delta; in pxa_osmr0_set_next_event()
85 timer_writel(next, OSMR0); in pxa_osmr0_set_next_event()
88 return (signed)(next - oscr) <= MIN_OSCR_DELTA ? -ETIME : 0; in pxa_osmr0_set_next_event()
/kernel/linux/linux-6.6/arch/xtensa/kernel/
H A Dtime.c64 unsigned long flags, next; in ccount_timer_set_next_event() local
68 next = get_ccount() + delta; in ccount_timer_set_next_event()
69 set_linux_timer(next); in ccount_timer_set_next_event()
70 if (next - get_ccount() > delta) in ccount_timer_set_next_event()
/kernel/linux/linux-6.6/drivers/gpu/drm/
H A Ddrm_vblank_work.c48 struct drm_vblank_work *work, *next; in drm_handle_vblank_works() local
54 list_for_each_entry_safe(work, next, &vblank->pending_work, node) { in drm_handle_vblank_works()
72 struct drm_vblank_work *work, *next; in drm_vblank_cancel_pending_works() local
76 list_for_each_entry_safe(work, next, &vblank->pending_work, node) { in drm_vblank_cancel_pending_works()
88 * @nextonmiss: defer until the next vblank if target vblank was missed
96 * %true the work is deferred until the next vblank (as if @count has been
/kernel/linux/linux-6.6/drivers/isdn/capi/
H A Dkcapi_proc.c99 .next = controller_next,
106 .next = controller_next,
181 .next = applications_next,
188 .next = applications_next,
/kernel/linux/linux-6.6/security/selinux/ss/
H A Debitmap.h35 struct ebitmap_node *next; member
52 for (*n = e->node; *n; *n = (*n)->next) { in ebitmap_start_positive()
75 for (*n = (*n)->next; *n; *n = (*n)->next) { in ebitmap_next_positive()
/kernel/linux/linux-6.6/tools/testing/vsock/
H A Dcontrol.c61 goto next; in control_init()
75 goto next; in control_init()
77 goto next; in control_init()
93 next: in control_init()
172 /* Return the next line from the control socket (without the trailing newline).
/third_party/f2fs-tools/fsck/
H A Dcompress.c120 struct _ext_t *next; member
130 p = p->next; in ext_found()
157 node->next = extension_list; in ext_filter_add()
167 extension_list = p->next; in ext_filter_destroy()
/third_party/curl/src/
H A Dtool_operhlp.c42 struct getout *next; in clean_getout() local
46 next = node->next; in clean_getout()
51 node = next; in clean_getout()
/third_party/glslang/glslang/MachineIndependent/
H A DPoolAlloc.cpp114 tHeader* next = inUseList->nextPage; in ~TPoolAllocator() local
117 inUseList = next; in ~TPoolAllocator()
128 tHeader* next = freeList->nextPage; in ~TPoolAllocator() local
130 freeList = next; in ~TPoolAllocator()
261 currentPageOffset = pageSize; // make next allocation come from a new page in allocate()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/normalizer/
H A DTestDeprecatedNormalizerAPI.java40 if(norm.next()!=0xe4) { in TestNormalizerAPI()
41 errln("error in Normalizer(CharacterIterator).next()"); in TestNormalizerAPI()
44 if(norm2.next()!=0xe4) { in TestNormalizerAPI()
45 errln("error in Normalizer(CharacterIterator).next()"); in TestNormalizerAPI()
94 char ch = iter.next(); in doTestComposedChars()
138 final char ch = iter.next(); in TestRoundTrip()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
H A DTestDeprecatedNormalizerAPI.java37 if(norm.next()!=0xe4) { in TestNormalizerAPI()
38 errln("error in Normalizer(CharacterIterator).next()"); in TestNormalizerAPI()
41 if(norm2.next()!=0xe4) { in TestNormalizerAPI()
42 errln("error in Normalizer(CharacterIterator).next()"); in TestNormalizerAPI()
91 char ch = iter.next(); in doTestComposedChars()
135 final char ch = iter.next(); in TestRoundTrip()
/third_party/icu/icu4c/source/i18n/
H A Dastro.h273 * The average number of solar days from one new moon to the next. This is the time
529 * Find the next time at which the sun's ecliptic longitude will have
533 UDate getSunTime(double desired, UBool next);
625 * Find the next or previous time at which the Moon's ecliptic
629 * @param next <tt>true</tt> if the next occurrence of the phase
633 UDate getMoonTime(double desired, UBool next);
634 UDate getMoonTime(const MoonAge& desired, UBool next);
656 double periodDays, double epsilon, UBool next);
/third_party/libunwind/libunwind/doc/
H A Dunw_step.tex8 \begin{Name}{3}{unw\_step}{David Mosberger-Tang}{Programming Library}{unw\_step}unw\_step -- advance to next stack frame
20 the next older, less deeply nested stack frame.
44 (``program-counter'') of the next stack frame is invalid (e.g., not
46 \item[\Const{UNW\_EBADFRAME}] The next stack frame is invalid.

Completed in 13 milliseconds

1...<<81828384858687888990>>...510