/external/jmonkeyengine/engine/src/networking/com/jme3/network/ |
AbstractMessage.java | 46 private transient boolean reliable = true; field in class:AbstractMessage 52 protected AbstractMessage( boolean reliable ) 54 this.reliable = reliable; 58 * Sets this message to 'reliable' or not and returns this 63 this.reliable = f; 73 return reliable;
|
Network.java | 58 * Creates a Server that will utilize both reliable and fast 68 * Creates a Server that will utilize both reliable and fast 78 * Creates a named and versioned Server that will utilize both reliable and fast 94 SelectorKernel reliable = new SelectorKernel(tcpPort); local 96 return new DefaultServer( gameName, version, reliable, fast ); 119 * using both reliable and fast transports. 128 * using both reliable and fast transports. 137 * using both reliable and fast transports. 147 * using both reliable and fast transports. 155 * send reliable messages. 166 SocketConnector reliable = new SocketConnector( remoteAddress, hostPort ); local 187 SocketConnector reliable = new SocketConnector( address, port ); local [all...] |
Message.java | 47 * Sets this message to 'reliable' or not and returns this
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/ |
Envelope.java | 46 private boolean reliable; field in class:Envelope 50 * source. The 'reliable' flag further indicates on which mode of 53 public Envelope( Endpoint source, byte[] data, boolean reliable ) 57 this.reliable = reliable; 72 return reliable; 77 return "Envelope[" + source + ", " + (reliable?"reliable":"unreliable") + ", " + data.length + "]";
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/ |
messages.properties | 14 standardError = Standard error on this test is {0} (should be less than {1} to become reliable!)
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/base/ |
KernelAdapter.java | 76 // on reliable connections 79 // Marks the messages as reliable or not if they came 81 private boolean reliable; field in class:KernelAdapter 84 boolean reliable ) 90 this.reliable = reliable; 104 public void broadcast( Filter<? super Endpoint> filter, ByteBuffer data, boolean reliable, 107 kernel.broadcast( filter, data, reliable, copy ); 177 if( reliable ) { 178 // If it's a reliable connection then it's slightly mor [all...] |
ConnectorAdapter.java | 75 // Marks the messages as reliable or not if they came 77 private boolean reliable; field in class:ConnectorAdapter 80 ErrorListener<Object> errorHandler, boolean reliable ) 86 this.reliable = reliable; 174 m.setReliable( reliable );
|
DefaultClient.java | 60 // First two channels are reserved for reliable and 90 public DefaultClient( String gameName, int version, Connector reliable, Connector fast, 94 setPrimaryConnectors( reliable, fast, connectorFactory ); 97 protected void setPrimaryConnectors( Connector reliable, Connector fast, ConnectorFactory connectorFactory ) 99 if( reliable == null ) 100 throw new IllegalArgumentException( "The reliable connector cannot be null." ); 107 channels.add(new ConnectorAdapter(reliable, dispatcher, dispatcher, true));
|
DefaultServer.java | 61 // First two channels are reserved for reliable and 89 public DefaultServer( String gameName, int version, Kernel reliable, Kernel fast ) 91 if( reliable == null ) 92 throw new IllegalArgumentException( "Default server reqiures a reliable kernel instance." ); 97 reliableAdapter = new KernelAdapter( this, reliable, dispatcher, true ); 336 // over the reliable connection at this point. 509 // Make sure all endpoints are closed. Note: reliable 530 // Just close the reliable endpoint 561 return "Connection[ id=" + id + ", reliable=" + channels[CH_RELIABLE]
|
/external/quake/quake/src/QW/client/ |
net_chan.c | 34 1 does this message contain a reliable payload 39 The remote connection never knows if it missed a reliable message, the 41 higher thatn the last reliable sequence, but without the correct evon/odd 42 bit for the reliable set. 44 If the sender notices that a reliable message has been dropped, it will be 46 the retransmit has been acknowledged and the reliable still failed to get there. 50 The reliable message can be added to at any time by doing 54 multiple frames worth piling up while the last reliable transmit goes 57 Reliable messages are allways placed first in a packet, then the unreliable 60 To the receiver, there is no distinction between the reliable and unreliabl [all...] |
net.h | 89 // reliable staging and holding areas 94 byte reliable_buf[MAX_MSGLEN]; // unacked reliable message
|
/frameworks/base/core/tests/coretests/src/android/widget/touchmode/ |
StartInTouchWithViewInFocusTest.java | 53 // TODO: reenable when more reliable 60 // TODO: reenable when more reliable
|
/external/jmonkeyengine/engine/src/test/jme3test/network/ |
TestChatClient.java | 139 private boolean reliable; field in class:TestChatClient.SendAction 141 public SendAction(boolean reliable) { 142 super(reliable ? "TCP" : "UDP"); 143 this.reliable = reliable; 151 chat.setReliable(reliable);
|
TestChatServer.java | 88 System.out.println("Broadcasting:" + m + " reliable:" + m.isReliable()); 90 // Just rebroadcast... the reliable flag will stay the
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/ |
BuildResultsProperties.java | 35 static final String P_STR_NOT_RELIABLE = "not reliable"; //$NON-NLS-1$ 90 return "This test has only one run, hence no error can be computed to verify if it's stable enough to be reliable."; 95 return "The error on this test is over the 3% threshold, hence its result may not be really reliable."; 105 return "The results history shows that the variation of its delta is between 10% and 20%, hence its result may not be really reliable."; 110 return "The results history shows that the variation of its delta is over 20%, hence its result is surely not reliable.";
|
/external/quake/quake/src/QW/server/ |
sv_send.c | 262 qboolean reliable; local 270 reliable = false; 275 reliable = true; // intentional fallthrough 281 reliable = true; // intentional fallthrough 287 reliable = true; // intentional fallthrough 323 if (reliable) { 358 qboolean reliable = false; local 386 reliable = true; // sounds that break the phs are reliable 394 // reliable = true [all...] |
/external/clang/test/PCH/ |
crash-12631281.cpp | 6 // This reduced test case exposed a use-after-free memory bug, which was reliable
|
/external/quake/quake/src/QW/ |
qw2do.txt | 14 reliable data? change blocks to WriteClientMSG(client, byte, estimiatedsize), which will
15 auto rotate buffers if needed? Change all reliable writes to WriteClientReliable_TYPE()?
67 x- check that fixangle from the server is reliable (after teleporters)
71 x- move sound effects to reliable data stream
|
/frameworks/base/core/java/android/bluetooth/ |
BluetoothGattCallback.java | 66 * <p>If this callback is invoked while a reliable write transaction is 70 * the application must abort the reliable write transaction. 120 * Callback invoked when a reliable write transaction has been completed. 123 * @param status {@link BluetoothGatt#GATT_SUCCESS} if the reliable write
|
/external/chromium/base/test/ |
test_file_util.h | 46 // In general it's not reliable to convert a FilePath to a wstring and we use
|
/external/iproute2/tc/ |
README.last | 37 is not reliable.
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/udp/ |
UdpKernel.java | 123 public void broadcast( Filter<? super Endpoint> filter, ByteBuffer data, boolean reliable, 126 if( reliable ) 127 throw new UnsupportedOperationException( "Reliable send not supported by this kernel." );
|
/build/tools/acp/ |
README | 31 It's easier and more reliable to write a cp command that works properly.
|
/external/chromium/chrome/browser/metrics/ |
user_metrics.h | 18 // UserMetrics. That way, our toolset can scan the sourcecode reliable for
|
/external/grub/netboot/ |
tulip.txt | 9 cleanups to make time-based activities more reliable.
|