HomeSort by relevance Sort by last modified time
    Searched defs:macros (Results 1 - 12 of 12) sorted by null

  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/cli/dhtadm/
DisplayTable.java 80 // Retrieve the table contents. Table consists of macros
83 Macro [] macros = null; local
86 macros = getDhcptabMgr().getMacros(getDhcpDatastore());
103 for (int i = 0; macros != null && i < macros.length; i++) {
104 Macro macro = macros[i];
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/client/
DataManager.java 55 private Macro [] macros; field in class:DataManager
79 macros = new Macro[0];
206 synchronized (macros) {
207 if (forceUpdate || macros.length == 0) {
208 macros = getDhcptabMgr().getMacros();
209 if (macros == null) {
210 macros = new Macro[0];
214 return macros;
ExportWizard.java 93 // Step to collect the macros to be exported
105 Macro [] macros = DataManager.get().getMacros(false); local
106 macroNames = new String[macros.length];
107 for (int i = 0; i < macros.length; ++i) {
108 macroNames[i] = macros[i].getKey();
ModifyAddressesDialog.java 86 private String [] macros; field in class:ModifyAddressesDialog.MacroListModel
93 macros = new String[macs.length + 1];
95 macros = new String[1];
97 macros[0] = keepString;
99 macros[i+1] = macs[i].getKey();
104 return macros.length;
108 return macros[index];
MacroView.java 66 Macro [] macros = (Macro [])get(); local
67 if (macros == null) {
68 macros = new Macro[0];
71 MacroView.macroTreeModel.getRootNode().setMacros(macros);
80 // A node in the tree of macros
131 private Macro [] macros = null; field in class:MacroView.MacroTreeRootNode
142 macros = newmacros;
144 for (int i = 0; i < macros.length; ++i) {
145 add(new MacroTreeNode(macros[i]));
153 return ResourceStrings.getString("macros");
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/common/
ExportController.java 59 String [] macros = emptyMacros; field in class:ExportController
130 * Specify that all macros should be exported.
134 macros = emptyMacros;
138 * Specify the macros to be exported.
139 * @param macros An array of macro names
141 public void setMacros(String [] macros) {
143 // Never allow macros to be null
144 if (macros != null) {
145 this.macros = macros;
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/server/
DhcpMgrImpl.java 281 * Export a list of macros specified by name to a file.
283 * @param allMacros true if all macros are to be exported
284 * @param names names of macros to be exported if allMacros is false
293 Macro [] macros = getDhcptabMgr().getMacros(); local
296 ArrayList macArr = getSelectedRecs(names, macros);
297 macros = (Macro [])macArr.toArray(new Macro[0]);
301 oos.writeObject(macros);
372 Macro [] macros = (Macro []) recs; local
423 * Import macros from an export file.
  /onnv/onnv-gate/usr/src/cmd/agents/snmp/agent/
personal.y 34 %token MACROS
158 /* of the user defined macros */
177 /* here are the values of the predifined macros */
238 configuration : agents | macros agents | snmp_security
644 /* macros */
647 macros : t_macros t_equal t_openbracket macros_list t_closebracket label
649 DEBUG_YACC("macros")
1271 t_macros : MACROS
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.bin/ftp/
ftp_var.h 234 EXTERN int macnum; /* number of defined macros */
235 EXTERN struct macel macros[16]; variable in typeref:struct:macel
  /onnv/onnv-gate/usr/src/cmd/agents/snmp/snmprelayd/
config.y 47 %token MACROS
186 /* of the user defined macros */
198 /* here are the values of the predifined macros */
262 configuration : agents | macros agents | snmp_security | environment resources
876 /* macros */
879 macros : t_macros t_equal t_openbracket macros_list t_closebracket label
881 DEBUG_YACC("macros")
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sendmail/src/
milter.c 1592 char **macros = NULL; local
2304 char **macros; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/man/src/
man.c 281 static char macros[MAXPATHLEN]; variable
373 (void) strcpy(macros, TMAC_AN);
461 case 'T': /* Respecify man macros */
462 (void) strcpy(macros, optarg);
    [all...]

Completed in 1260 milliseconds