• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/libxml2-2.7.2/

Lines Matching defs:userdata

284  * Free the hash @table and its contents. The userdata is
335 * @name: the name of the userdata
336 * @userdata: a pointer to the userdata
338 * Add the @userdata to the hash @table. This can later be retrieved
344 xmlHashAddEntry(xmlHashTablePtr table, const xmlChar *name, void *userdata) {
345 return(xmlHashAddEntry3(table, name, NULL, NULL, userdata));
351 * @name: the name of the userdata
352 * @name2: a second name of the userdata
353 * @userdata: a pointer to the userdata
355 * Add the @userdata to the hash @table. This can later be retrieved
362 const xmlChar *name2, void *userdata) {
363 return(xmlHashAddEntry3(table, name, name2, NULL, userdata));
369 * @name: the name of the userdata
370 * @userdata: a pointer to the userdata
373 * Add the @userdata to the hash @table. This can later be retrieved
381 void *userdata, xmlHashDeallocator f) {
382 return(xmlHashUpdateEntry3(table, name, NULL, NULL, userdata, f));
388 * @name: the name of the userdata
389 * @name2: a second name of the userdata
390 * @userdata: a pointer to the userdata
393 * Add the @userdata to the hash @table. This can later be retrieved
401 const xmlChar *name2, void *userdata,
403 return(xmlHashUpdateEntry3(table, name, name2, NULL, userdata, f));
409 * @name: the name of the userdata
411 * Find the userdata specified by the @name.
413 * Returns the pointer to the userdata
423 * @name: the name of the userdata
424 * @name2: a second name of the userdata
426 * Find the userdata specified by the (@name, @name2) tuple.
428 * Returns the pointer to the userdata
439 * @prefix: the prefix of the userdata
440 * @name: the name of the userdata
442 * Find the userdata specified by the QName @prefix:@name/@name.
444 * Returns the pointer to the userdata
455 * @prefix: the prefix of the userdata
456 * @name: the name of the userdata
457 * @prefix2: the second prefix of the userdata
458 * @name2: a second name of the userdata
460 * Find the userdata specified by the QNames tuple
462 * Returns the pointer to the userdata
474 * @name: the name of the userdata
475 * @name2: a second name of the userdata
476 * @name3: a third name of the userdata
477 * @userdata: a pointer to the userdata
479 * Add the @userdata to the hash @table. This can later be retrieved
488 void *userdata) {
570 entry->payload = userdata;
589 * @name: the name of the userdata
590 * @name2: a second name of the userdata
591 * @name3: a third name of the userdata
592 * @userdata: a pointer to the userdata
595 * Add the @userdata to the hash @table. This can later be retrieved
604 void *userdata, xmlHashDeallocator f) {
648 insert->payload = userdata;
657 insert->payload = userdata;
668 insert->payload = userdata;
677 insert->payload = userdata;
700 entry->payload = userdata;
715 * @name: the name of the userdata
716 * @name2: a second name of the userdata
717 * @name3: a third name of the userdata
719 * Find the userdata specified by the (@name, @name2, @name3) tuple.
721 * Returns the a pointer to the userdata
756 * @prefix: the prefix of the userdata
757 * @name: the name of the userdata
758 * @prefix2: the second prefix of the userdata
759 * @name2: a second name of the userdata
760 * @prefix3: the third prefix of the userdata
761 * @name3: a third name of the userdata
763 * Find the userdata specified by the (@name, @name2, @name3) tuple.
765 * Returns the a pointer to the userdata
870 * @name: the name of the userdata or NULL
871 * @name2: a second name of the userdata or NULL
872 * @name3: a third name of the userdata or NULL
891 * @name: the name of the userdata or NULL
892 * @name2: a second name of the userdata or NULL
893 * @name3: a third name of the userdata or NULL
992 * @name: the name of the userdata
995 * Find the userdata specified by the @name and remove
996 * it from the hash @table. Existing userdata for this tuple will be removed
1009 * @name: the name of the userdata
1010 * @name2: a second name of the userdata
1013 * Find the userdata specified by the (@name, @name2) tuple and remove
1014 * it from the hash @table. Existing userdata for this tuple will be removed
1028 * @name: the name of the userdata
1029 * @name2: a second name of the userdata
1030 * @name3: a third name of the userdata
1033 * Find the userdata specified by the (@name, @name2, @name3) tuple and remove
1034 * it from the hash @table. Existing userdata for this tuple will be removed