ESP-IDF
arg_hashtable::table
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading (1/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
arg_hashtable::table
arg_hashtable::table field
Syntax
Show:
Summary
Declaration
from
argtable3_private.h:109
struct
arg_hashtable_entry
*
*
table
;
Examples
References
from
examples
Code
Location
Referrer
struct
arg_hashtable_entry
*
*
table
;
argtable3_private.h:109
h
->
table
=
(
struct
arg_hashtable_entry
*
*
)
xmalloc
(
sizeof
(
struct
arg_hashtable_entry
*
)
*
size
)
;
arg_hashtable.c:133
arg_hashtable_create()
memset
(
h
->
table
,
0
,
size
*
sizeof
(
struct
arg_hashtable_entry
*
)
)
;
arg_hashtable.c:134
arg_hashtable_create()
while
(
NULL
!=
(
e
=
h
->
table
[
i
]
)
)
{
arg_hashtable.c:164
arg_hashtable_expand()
h
->
table
[
i
]
=
e
->
next
;
arg_hashtable.c:165
arg_hashtable_expand()
xfree
(
h
->
table
)
;
arg_hashtable.c:172
arg_hashtable_expand()
h
->
table
=
newtable
;
arg_hashtable.c:173
arg_hashtable_expand()
e
->
next
=
h
->
table
[
index
]
;
arg_hashtable.c:201
arg_hashtable_insert()
h
->
table
[
index
]
=
e
;
arg_hashtable.c:202
arg_hashtable_insert()
e
=
h
->
table
[
index
]
;
arg_hashtable.c:213
arg_hashtable_search()
pE
=
&
(
h
->
table
[
index
]
)
;
arg_hashtable.c:236
arg_hashtable_remove()
struct
arg_hashtable_entry
*
*
table
=
h
->
table
;
arg_hashtable.c:256
arg_hashtable_destroy()
xfree
(
h
->
table
)
;
arg_hashtable.c:279
arg_hashtable_destroy()
if
(
h
->
table
[
i
]
!=
NULL
)
{
arg_hashtable.c:297
arg_hashtable_itr_create()
itr
->
e
=
h
->
table
[
i
]
;
arg_hashtable.c:298
arg_hashtable_itr_create()
table
=
itr
->
h
->
table
;
arg_hashtable.c:341
arg_hashtable_itr_advance()
itr
->
h
->
table
[
itr
->
index
]
=
itr
->
e
->
next
;
arg_hashtable.c:363
arg_hashtable_itr_remove()
e
=
h
->
table
[
index
]
;
arg_hashtable.c:393
arg_hashtable_itr_search()
e
=
h
->
table
[
index
]
;
arg_hashtable.c:417
arg_hashtable_change()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
arg_hashtable::table
is written by 2 functions and is read by 11 functions:
arg_hashtable_create()
arg_hashtable_expand()
All items filtered out
arg_hashtable::table
arg_hashtable_create()
arg_hashtable_expand()
arg_hashtable_insert()
arg_hashtable_search()
arg_hashtable_remove()
arg_hashtable_destroy()
arg_hashtable_itr_create()
arg_hashtable_itr_advance()
arg_hashtable_itr_remove()
arg_hashtable_itr_search()
arg_hashtable_change()
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out