Lines Matching refs:n
33 int n; in esp_vApplicationTickHook() local
35 for (n=0; n<MAX_HOOKS; n++) { in esp_vApplicationTickHook()
36 if (tick_cb[core][n]!=NULL) { in esp_vApplicationTickHook()
37 tick_cb[core][n](); in esp_vApplicationTickHook()
46 for (int n = 0; n < MAX_HOOKS; n++) { in esp_vApplicationIdleHook() local
47 if (idle_cb[core][n] != NULL && !idle_cb[core][n]()) { in esp_vApplicationIdleHook()
71 for(int n = 0; n < MAX_HOOKS; n++){ in esp_register_freertos_idle_hook_for_cpu() local
72 if (idle_cb[cpuid][n]==NULL) { in esp_register_freertos_idle_hook_for_cpu()
73 idle_cb[cpuid][n]=new_idle_cb; in esp_register_freertos_idle_hook_for_cpu()
93 for(int n = 0; n < MAX_HOOKS; n++){ in esp_register_freertos_tick_hook_for_cpu() local
94 if (tick_cb[cpuid][n]==NULL) { in esp_register_freertos_tick_hook_for_cpu()
95 tick_cb[cpuid][n]=new_tick_cb; in esp_register_freertos_tick_hook_for_cpu()
115 for(int n = 0; n < MAX_HOOKS; n++){ in esp_deregister_freertos_idle_hook_for_cpu() local
116 if(idle_cb[cpuid][n] == old_idle_cb) idle_cb[cpuid][n] = NULL; in esp_deregister_freertos_idle_hook_for_cpu()
136 for(int n = 0; n < MAX_HOOKS; n++){ in esp_deregister_freertos_tick_hook_for_cpu() local
137 if(tick_cb[cpuid][n] == old_tick_cb) tick_cb[cpuid][n] = NULL; in esp_deregister_freertos_tick_hook_for_cpu()