Lines Matching full:elements
151 * elements in a BPF map.
156 * number of elements in the map to delete in batch;
158 * elements if the output **count** value is not equal to the input **count** value
169 * @brief **bpf_map_lookup_batch()** allows for batch lookup of BPF map elements.
187 * @param count input and output parameter; on input it's the number of elements
188 * in the map to read in batch; on output it's the number of elements that were
190 * If a non-EFAULT error is returned, count will be set as the number of elements
203 * of BPF map elements where each element is deleted after being retrieved.
211 * @param count input and output parameter; on input it's the number of elements
213 * elements that were successfully read and deleted
215 * is not equal to the input **count** value, up to **count** elements may
217 * if **EFAULT** is returned up to *count* elements may have been deleted without
229 * @brief **bpf_map_update_batch()** updates multiple elements in a map
241 * represents how many elements were successfully updated. Also note that if
245 * Create new elements or update existing.
248 * Create new elements only if they do not exist.
251 * Update existing elements.
254 * Update spin_lock-ed map elements. This must be
260 * @param count input and output parameter; on input it's the number of elements
262 * **count** represents the number of updated elements if the output **count**