Lines Matching full:elements
179 * elements in a BPF map.
184 * number of elements in the map to delete in batch;
186 * elements if the output **count** value is not equal to the input **count** value
197 * @brief **bpf_map_lookup_batch()** allows for batch lookup of BPF map elements.
219 * @param count input and output parameter; on input it's the number of elements
220 * in the map to read in batch; on output it's the number of elements that were
222 * If a non-EFAULT error is returned, count will be set as the number of elements
235 * of BPF map elements where each element is deleted after being retrieved.
246 * @param count input and output parameter; on input it's the number of elements
248 * elements that were successfully read and deleted
250 * is not equal to the input **count** value, up to **count** elements may
252 * if **EFAULT** is returned up to *count* elements may have been deleted without
264 * @brief **bpf_map_update_batch()** updates multiple elements in a map
276 * represents how many elements were successfully updated. Also note that if
280 * Create new elements or update existing.
283 * Create new elements only if they do not exist.
286 * Update existing elements.
289 * Update spin_lock-ed map elements. This must be
295 * @param count input and output parameter; on input it's the number of elements
297 * **count** represents the number of updated elements if the output **count**