#include <config.h>
#include <missing.h>
#include <stdio.h>
#include <math.h>
#include <libgeda/libgeda.h>
#include <libgeda/libgedaguile.h>
#include "../include/globals.h"
#include "../include/prototype.h"
Go to the source code of this file.
Function Documentation
SCM g_scm_c_get_uref |
( |
TOPLEVEL * |
toplevel, |
|
|
OBJECT * |
object |
|
) |
| |
SCM g_get_packages |
( |
SCM |
level | ) |
|
SCM g_get_non_unique_packages |
( |
SCM |
level | ) |
|
SCM g_get_pins |
( |
SCM |
scm_uref | ) |
|
SCM g_get_all_nets |
( |
SCM |
scm_level | ) |
|
SCM g_get_all_unique_nets |
( |
SCM |
scm_level | ) |
|
SCM g_get_all_connections |
( |
SCM |
scm_netname | ) |
|
SCM g_get_nets |
( |
SCM |
scm_uref, |
|
|
SCM |
scm_pin |
|
) |
| |
SCM g_get_pins_nets |
( |
SCM |
scm_uref | ) |
|
SCM g_get_all_package_attributes |
( |
SCM |
scm_uref, |
|
|
SCM |
scm_wanted_attrib |
|
) |
| |
- Function Description
- This function returns the values of a specific attribute type attached to the symbol instances with the given refdes.
Every first attribute value found is added to the return list. A Scheme false value is added if the instance has no such attribute.
- Note:
- The order of the values in the return list is the order of symbol instances within gnetlist (the first element is the value associated with the first symbol instance).
- Parameters:
-
[in] | scm_uref | Package reference. |
[in] | scm_wanted_attrib | Attribute name. |
- Returns:
- A list of attribute values as strings and #f.
Definition at line 492 of file g_netlist.c.
SCM g_get_attribute_by_pinseq |
( |
SCM |
scm_uref, |
|
|
SCM |
scm_pinseq, |
|
|
SCM |
scm_wanted_attrib |
|
) |
| |
SCM g_get_attribute_by_pinnumber |
( |
SCM |
scm_uref, |
|
|
SCM |
scm_pin, |
|
|
SCM |
scm_wanted_attrib |
|
) |
| |
SCM g_get_toplevel_attribute |
( |
SCM |
scm_wanted_attrib | ) |
|
SCM g_get_backend_arguments |
( |
| ) |
|
- Function Description
- Returns a list of arguments passed to the gnetlist backend via the `-O' gnetlist command-line option.
Definition at line 759 of file g_netlist.c.
SCM g_get_input_files |
( |
| ) |
|
- Function Description
- This function returns a list of the files named on the command line.
- Returns:
- A list of filenames as strings.
Definition at line 779 of file g_netlist.c.
SCM g_graphical_objs_in_net_with_attrib_get_attrib |
( |
SCM |
scm_netname, |
|
|
SCM |
scm_has_attribute, |
|
|
SCM |
scm_wanted_attribute |
|
) |
| |