HomeSort by relevance Sort by last modified time
    Searched refs:Kernel (Results 1 - 25 of 42) sorted by null

1 2

  /external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
KernelFactory.java 35 import com.jme3.network.kernel.Kernel;
50 public Kernel createKernel( int channel, int port ) throws IOException;
NioKernelFactory.java 35 import com.jme3.network.kernel.Kernel;
36 import com.jme3.network.kernel.tcp.SelectorKernel;
49 public Kernel createKernel( int channel, int port ) throws IOException
KernelAdapter.java 39 import com.jme3.network.kernel.Endpoint;
40 import com.jme3.network.kernel.EndpointEvent;
41 import com.jme3.network.kernel.Envelope;
42 import com.jme3.network.kernel.Kernel;
52 * Wraps a single Kernel and forwards new messages
55 * by DefaultServer to manage its kernel objects.
71 private Kernel kernel; field in class:KernelAdapter
83 public KernelAdapter( DefaultServer server, Kernel kernel, MessageListener<HostedConnection> messageDispatcher
    [all...]
DefaultServer.java 36 import com.jme3.network.kernel.Endpoint;
37 import com.jme3.network.kernel.Kernel;
52 * its network connectivity to kernel.Kernel.
89 public DefaultServer( String gameName, int version, Kernel reliable, Kernel fast )
92 throw new IllegalArgumentException( "Default server reqiures a reliable kernel instance." );
122 // for "connection types" and some kind of registry of kernel and
136 Kernel kernel = kernelFactory.createKernel(result, port); local
    [all...]
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
EndpointEvent.java 33 package com.jme3.network.kernel;
47 private Kernel source;
51 public EndpointEvent( Kernel source, Endpoint p, Type type )
58 public static EndpointEvent createAdd( Kernel source, Endpoint p )
63 public static EndpointEvent createRemove( Kernel source, Endpoint p )
68 public Kernel getSource()
Endpoint.java 33 package com.jme3.network.kernel;
38 * An abstract endpoint in a Kernel that can be used for
39 * sending/receiving messages within the kernel space.
48 * Kernel instance.
60 * Returns the kernel to which this endpoint belongs.
62 public Kernel getKernel();
Kernel.java 33 package com.jme3.network.kernel;
40 * kernel.
45 public interface Kernel
55 * Initializes the kernel and starts any internal processing.
60 * Gracefully terminates the kernel and stops any internal
68 * kernel that match the specified endpoint filter..
AbstractKernel.java 33 package com.jme3.network.kernel;
42 * Base implementation of the Kernel interface providing several
44 * assumes that the kernel will be managing its own internal threads
51 public abstract class AbstractKernel implements Kernel
77 log.log( Level.SEVERE, "Unhanddled kernel error", e );
  /external/llvm/include/llvm/Support/
CodeGen.h 30 enum Model { Default, JITDefault, Small, Kernel, Medium, Large };
63 return CodeModel::Kernel;
80 case CodeModel::Kernel:
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Kernel/Platforms/Generic/
Android.mk 9 KERNEL_PATH := Kernel/Platforms/Generic
  /external/chromium_org/third_party/lcov/contrib/galaxy/
posterize.pl 36 my $Title = "Linux Kernel Coverage";
78 %%Title: Linux 2.4.0 Kernel Poster
209 (Kernel: $KernelVersion) centerText advanceLine
  /external/chromium_org/third_party/lcov-1.9/contrib/galaxy/
posterize.pl 36 my $Title = "Linux Kernel Coverage";
78 %%Title: Linux 2.4.0 Kernel Poster
209 (Kernel: $KernelVersion) centerText advanceLine
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/udp/
UdpEndpoint.java 33 package com.jme3.network.kernel.udp;
35 import com.jme3.network.kernel.Endpoint;
36 import com.jme3.network.kernel.Kernel;
37 import com.jme3.network.kernel.KernelException;
58 private UdpKernel kernel; field in class:UdpEndpoint
61 public UdpEndpoint( UdpKernel kernel, long id, SocketAddress address, DatagramSocket socket )
66 this.kernel = kernel;
69 public Kernel getKernel(
    [all...]
  /hardware/samsung_slsi/exynos5/mobicore/daemon/
Android.mk 34 include $(LOCAL_PATH)/Kernel/Android.mk
65 include $(LOCAL_PATH)/Kernel/Android.mk
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/tcp/
NioEndpoint.java 33 package com.jme3.network.kernel.tcp;
35 import com.jme3.network.kernel.Endpoint;
36 import com.jme3.network.kernel.Kernel;
37 import com.jme3.network.kernel.KernelException;
58 private SelectorKernel kernel; field in class:NioEndpoint
62 public NioEndpoint( SelectorKernel kernel, long id, SocketChannel socket )
66 this.kernel = kernel;
69 public Kernel getKernel(
    [all...]
  /hardware/ti/omap4xxx/domx/make/
start.mk 42 $(error Error: PROCFAMILY can not be determined from Kernel .config)
  /external/chromium_org/sync/syncable/
directory.h 83 // The dirty/clean state of kernel fields backed by the share_info table.
91 // Various data that the Directory::Kernel we are backing (persisting data
122 // What the Directory needs on initialization to create itself and its Kernel.
192 // holding kernel mutex.
391 struct Kernel {
394 Kernel(const std::string& name, const KernelLoadInfo& info,
398 ~Kernel();
469 // The next metahandle is protected by kernel mutex.
479 // These private versions expect the kernel lock to already be held
534 Kernel* kernel_
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/
xmesaP.h 94 GLubyte Kernel[16]; /* Dither kernel */
260 int d = xmesa->xm_visual->Kernel[((X)&3) | (((Y)&3)<<2)]; \
  /external/mesa3d/src/mesa/drivers/x11/
xmesaP.h 94 GLubyte Kernel[16]; /* Dither kernel */
260 int d = xmesa->xm_visual->Kernel[((X)&3) | (((Y)&3)<<2)]; \
  /external/llvm/include/llvm/CodeGen/
CommandFlags.h 63 clEnumValN(CodeModel::Kernel, "kernel",
64 "Kernel code model"),
  /external/chromium_org/third_party/mesa/src/include/CL/
cl.hpp 110 * cl::Kernel kernel(program_, "hello", &err);
115 * kernel,
    [all...]
  /external/mesa3d/include/CL/
cl.hpp 110 * cl::Kernel kernel(program_, "hello", &err);
115 * kernel,
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
syncable.h 337 // Dumps all kernel info into a DictionaryValue and returns it.
648 // concurrent modification by the kernel lock.
654 // All methods which require the kernel lock to be already held take a
658 // be held before acquiring the kernel lock.
684 // Various data that the Directory::Kernel we are backing (persisting data
712 // What the Directory needs on initialization to create itself and its Kernel.
722 // The dirty/clean state of kernel fields backed by the share_info table.
822 // These private versions expect the kernel lock to already be held
967 struct Kernel {
968 Kernel(const FilePath& db_path, const std::string& name
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
core-extensions.rb 158 module Kernel
  /external/libvpx/libvpx/examples/includes/geshi/geshi/
ruby.php 87 'Iconv::OutOfRange', 'IndexError', 'Interrupt', 'Kernel',

Completed in 2590 milliseconds

1 2