Searched refs:act (Results 1 - 25 of 81) sorted by relevance

1234

/openjdk10/hotspot/test/runtime/jsig/
H A DlibTestJNI.c39 struct sigaction act; local
42 act.sa_flags = SA_ONSTACK|SA_RESTART|SA_SIGINFO;
43 sigfillset(&act.sa_mask);
44 act.sa_handler = SIG_DFL;
45 act.sa_sigaction = (void (*)())sig_handler;
46 sigaction(0x20+val, &act, &oact);
/openjdk10/hotspot/test/runtime/JVMDoPrivileged/
H A DDoPrivileged.java46 static void doPrivileged(VoidPrivilegedAction act) { argument
47 AccessController.doPrivileged(act);
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/java_cup/internal/runtime/
H A Dlr_parser.java33 * parsers act by shifting input onto a parse stack until the Symbols
536 int act;
574 act = get_action(((Symbol)stack.peek()).parse_state, cur_token.sym);
577 if (act > 0)
580 cur_token.parse_state = act-1;
589 else if (act < 0)
592 lhs_sym = do_action((-act)-1, this, stack, tos);
595 lhs_sym_num = production_tab[(-act)-1][0];
596 handle_size = production_tab[(-act)-1][1];
606 act
[all...]
/openjdk10/jdk/src/java.naming/share/classes/com/sun/jndi/ldap/
H A DVersionHelper.java49 PrivilegedAction<String> act =
51 String trust = AccessController.doPrivileged(act);
83 PrivilegedAction<Thread> act =
85 return AccessController.doPrivileged(act);
89 PrivilegedAction<ClassLoader> act =
91 return AccessController.doPrivileged(act);
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/dnd/
H A DMouseDragGestureRecognizer.java80 * @param act The actions permitted for this Drag
85 protected MouseDragGestureRecognizer(DragSource ds, Component c, int act, DragGestureListener dgl) { argument
86 super(ds, c, act, dgl);
98 * @param act The actions permitted for this drag
101 protected MouseDragGestureRecognizer(DragSource ds, Component c, int act) { argument
102 this(ds, c, act, null);
H A DDragGestureEvent.java81 * an {@code act} parameter representing
87 * @param act The user's preferred action.
94 * @throws IllegalArgumentException if the act parameter does not comply with
100 public DragGestureEvent(DragGestureRecognizer dgr, int act, Point ori, argument
113 if (act != DnDConstants.ACTION_COPY &&
114 act != DnDConstants.ACTION_MOVE &&
115 act != DnDConstants.ACTION_LINK)
121 action = act;
/openjdk10/jdk/test/java/util/List/
H A DListFactories.java65 static Object[] a(List<String> act, List<String> exp) { argument
66 return new Object[] { act, exp };
113 public void cannotAddLast(List<String> act, List<String> exp) { argument
114 act.add("x");
118 public void cannotAddFirst(List<String> act, List<String> exp) { argument
119 act.add(0, "x");
123 public void cannotRemove(List<String> act, List<String> exp) { argument
124 act.remove(0);
128 public void cannotSet(List<String> act, List<String> exp) { argument
129 act
133 contentsMatch(List<String> act, List<String> exp) argument
213 serialEquality(List<String> act, List<String> exp) argument
[all...]
/openjdk10/jdk/src/java.naming/share/classes/com/sun/naming/internal/
H A DVersionHelper.java117 PrivilegedAction<String> act = () -> {
124 return AccessController.doPrivileged(act);
134 PrivilegedAction<Properties> act = () -> {
141 Properties sysProps = AccessController.doPrivileged(act);
177 PrivilegedAction<InputStream> act = () -> {
185 return AccessController.doPrivileged(act);
195 PrivilegedAction<InputStream> act = () -> {
208 return AccessController.doPrivileged(act);
220 PrivilegedExceptionAction<Enumeration<URL>> act = () ->
225 urls = AccessController.doPrivileged(act);
[all...]
/openjdk10/jdk/test/java/util/Collection/
H A DSetFactories.java66 static Object[] a(Set<String> act, Set<String> exp) { argument
67 return new Object[] { act, exp };
122 public void cannotAdd(Set<String> act, Set<String> exp) { argument
123 act.add("x");
127 public void cannotRemove(Set<String> act, Set<String> exp) { argument
128 act.remove(act.iterator().next());
132 public void contentsMatch(Set<String> act, Set<String> exp) { argument
133 assertEquals(act, exp);
189 public void hashCodeEqual(Set<String> act, Se argument
194 containsAll(Set<String> act, Set<String> exp) argument
267 serialEquality(Set<String> act, Set<String> exp) argument
[all...]
/openjdk10/hotspot/src/os/bsd/vm/
H A Djsig.c155 static int call_os_sigaction(int sig, const struct sigaction *act, argument
164 return (*os_sigaction)(sig, act, oact);
167 int sigaction(int sig, const struct sigaction *act, struct sigaction *oact) { argument
173 return call_os_sigaction(sig, act, oact);
185 if (act != NULL) {
186 sact[sig] = *act;
194 res = call_os_sigaction(sig, act, &oldAct);
208 res = call_os_sigaction(sig, act, oact);
/openjdk10/jdk/src/java.management/share/classes/javax/management/
H A DClassAttributeValueExp.java61 GetPropertyAction act = new GetPropertyAction("jmx.serial.form");
62 String form = AccessController.doPrivileged(act);
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/spi/orb/
H A DPropertyParser.java68 ParserAction act = (ParserAction)(iter.next()) ;
70 Object result = act.apply( props ) ;
75 map.put( act.getFieldName(), result ) ;
H A DOperationFactory.java376 private Operation act ; field in class:OperationFactory.ListAction
378 ListAction( String sep, Operation act )
381 this.act = act ;
397 Object val = act.operate( next ) ;
408 "\",action=" + act + ")" ;
412 public static Operation listAction( String sep, Operation act )
414 return new ListAction( sep, act ) ;
441 Operation act = actions[ctr] ;
443 result[ctr++] = act
[all...]
/openjdk10/hotspot/src/os/aix/vm/
H A Djsig.c151 static int call_os_sigaction(int sig, const struct sigaction *act, argument
161 return (*os_sigaction)(sig, act, oact);
164 int sigaction(int sig, const struct sigaction *act, struct sigaction *oact) { argument
178 if (act != NULL) {
179 sact[sig] = *act;
187 res = call_os_sigaction(sig, act, &oldAct);
201 res = call_os_sigaction(sig, act, oact);
/openjdk10/hotspot/src/os/solaris/vm/
H A Djsig.c187 static int call_os_sigaction(int sig, const struct sigaction *act, argument
196 return (*os_sigaction)(sig, act, oact);
199 int sigaction(int sig, const struct sigaction *act, struct sigaction *oact) { argument
214 if (act != NULL) {
215 sact[sig] = *act;
223 res = call_os_sigaction(sig, act, &oldAct);
237 res = call_os_sigaction(sig, act, oact);
/openjdk10/hotspot/src/os/linux/vm/
H A Djsig.c152 static int call_os_sigaction(int sig, const struct sigaction *act, argument
161 return (*os_sigaction)(sig, act, oact);
164 int sigaction(int sig, const struct sigaction *act, struct sigaction *oact) { argument
178 if (act != NULL) {
179 sact[sig] = *act;
187 res = call_os_sigaction(sig, act, &oldAct);
201 res = call_os_sigaction(sig, act, oact);
/openjdk10/jdk/src/java.desktop/macosx/classes/sun/lwawt/macosx/
H A DCMouseDragGestureRecognizer.java56 protected CMouseDragGestureRecognizer(DragSource ds, Component c, int act, DragGestureListener dgl) { argument
57 super(ds, c, act, dgl);
60 protected CMouseDragGestureRecognizer(DragSource ds, Component c, int act) { argument
61 this(ds, c, act, null);
/openjdk10/jdk/src/java.desktop/windows/classes/sun/awt/windows/
H A DWMouseDragGestureRecognizer.java72 * @param act The actions permitted for this Drag
77 protected WMouseDragGestureRecognizer(DragSource ds, Component c, int act, DragGestureListener dgl) { argument
78 super(ds, c, act, dgl);
86 * @param act The actions permitted for this Drag
89 protected WMouseDragGestureRecognizer(DragSource ds, Component c, int act) { argument
90 this(ds, c, act, null);
/openjdk10/jdk/src/java.desktop/unix/classes/sun/awt/X11/
H A DXMouseDragGestureRecognizer.java76 * @param act The actions permitted for this Drag
81 protected XMouseDragGestureRecognizer(DragSource ds, Component c, int act, DragGestureListener dgl) { argument
82 super(ds, c, act, dgl);
90 * @param act The actions permitted for this Drag
93 protected XMouseDragGestureRecognizer(DragSource ds, Component c, int act) { argument
94 this(ds, c, act, null);
/openjdk10/jdk/test/java/util/Map/
H A DMapFactories.java81 static Object[] a(Map<Integer,String> act, Map<Integer,String> exp) { argument
82 return new Object[] { act, exp };
121 public void cannotPutNew(Map<Integer,String> act, Map<Integer,String> exp) { argument
122 act.put(-1, "xyzzy");
126 public void cannotPutOld(Map<Integer,String> act, Map<Integer,String> exp) { argument
127 act.put(0, "a");
131 public void cannotRemove(Map<Integer,String> act, Map<Integer,String> exp) { argument
132 act.remove(act.keySet().iterator().next());
136 public void contentsMatch(Map<Integer,String> act, Ma argument
141 containsAllKeys(Map<Integer,String> act, Map<Integer,String> exp) argument
147 containsAllValues(Map<Integer,String> act, Map<Integer,String> exp) argument
210 hashCodeEquals(Map<Integer,String> act, Map<Integer,String> exp) argument
351 serialEquality(Map<Integer, String> act, Map<Integer, String> exp) argument
[all...]
/openjdk10/jdk/src/java.management/share/classes/javax/management/modelmbean/
H A DXMLParseException.java83 GetPropertyAction act = new GetPropertyAction("jmx.serial.form");
84 String form = AccessController.doPrivileged(act);
/openjdk10/jdk/test/javax/swing/SwingUtilities/7170657/
H A Dbug7170657.java72 private static void fail(final MouseEvent exp, final MouseEvent act) { argument
74 System.err.println("Actual: " + act);
/openjdk10/jdk/test/java/rmi/activation/Activatable/notSerializable/
H A DNotSerializable.java59 Activatable act = new FakeActivatable();
64 out.writeObject(act);
75 Activatable.unexportObject(act, true);
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/spi/orbutil/fsm/
H A DStateEngine.java47 /** Add a new transition (old,in,guard,act,new) to the state engine.
74 /** Equivalent to setDefault( oldState, act, newState ) where act is an
91 public void setDefaultAction( Action act ) throws IllegalStateException ;
/openjdk10/jdk/test/java/lang/invoke/
H A DMethodHandleConstants.java71 private static void assertEquals(Object exp, Object act) { argument
72 if (exp == act || (exp != null && exp.equals(act))) return;
73 throw new AssertionError("not equal: "+exp+", "+act);

Completed in 118 milliseconds

1234