#include <libwapcaplet/libwapcaplet.h>
#include <libcss/unit.h>
#include <libcss/errors.h>
#include <libcss/functypes.h>
#include "select/bloom.h"
#include "select/strings.h"
Go to the source code of this file.
|
| css_error | css__selector_hash_create (css_selector_hash **hash) |
| |
| css_error | css__selector_hash_destroy (css_selector_hash *hash) |
| |
| css_error | css__selector_hash_insert (css_selector_hash *hash, const struct css_selector *selector) |
| |
| css_error | css__selector_hash_remove (css_selector_hash *hash, const struct css_selector *selector) |
| |
| css_error | css__selector_hash_find (css_selector_hash *hash, const struct css_hash_selection_requirments *req, css_selector_hash_iterator *iterator, const struct css_selector ***matched) |
| |
| css_error | css__selector_hash_find_by_class (css_selector_hash *hash, const struct css_hash_selection_requirments *req, css_selector_hash_iterator *iterator, const struct css_selector ***matched) |
| |
| css_error | css__selector_hash_find_by_id (css_selector_hash *hash, const struct css_hash_selection_requirments *req, css_selector_hash_iterator *iterator, const struct css_selector ***matched) |
| |
| css_error | css__selector_hash_find_universal (css_selector_hash *hash, const struct css_hash_selection_requirments *req, css_selector_hash_iterator *iterator, const struct css_selector ***matched) |
| |
| css_error | css__selector_hash_size (css_selector_hash *hash, size_t *size) |
| |
◆ css_selector_hash
◆ css_selector_hash_iterator
◆ css__selector_hash_create()
Create a hash
- Parameters
-
| hash | Pointer to location to receive result |
- Returns
- CSS_OK on success, appropriate error otherwise
◆ css__selector_hash_destroy()
Destroy a hash
- Parameters
-
- Returns
- CSS_OK on success, appropriate error otherwise
◆ css__selector_hash_find()
◆ css__selector_hash_find_by_class()
◆ css__selector_hash_find_by_id()
◆ css__selector_hash_find_universal()
◆ css__selector_hash_insert()
◆ css__selector_hash_remove()
◆ css__selector_hash_size()
Determine the memory-resident size of a hash
- Parameters
-
| hash | Hash to consider |
| size | Pointer to location to receive byte count |
- Returns
- CSS_OK on success.
- Note
- The returned size will represent the size of the hash datastructures, and will not include the size of the data stored in the hash.