HomeSort by relevance Sort by last modified time
    Searched refs:Kernel (Results 1 - 25 of 31) 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 27 enum Model { Default, JITDefault, Small, Kernel, Medium, Large };
  /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...]
  /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/llvm/lib/Target/
TargetMachineC.cpp 89 CM = CodeModel::Kernel;
  /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...]
syncable.cc 186 // field keys/values in the kernel to the given dictionary.
190 void SetFieldValues(const EntryKernel& kernel,
199 V* value = enum_value_fn(kernel.ref(field));
275 kernel_ = new Kernel(FilePath(), name, KernelLoadInfo());
304 Directory::Kernel::Kernel(const FilePath& db_path,
326 void Directory::Kernel::AddRef() {
330 void Directory::Kernel::Release() {
335 Directory::Kernel::~Kernel() {
1836 EntryKernel* const kernel = entry.kernel_; local
    [all...]
  /sdk/assetstudio/src/com/android/assetstudiolib/
Util.java 30 import java.awt.image.Kernel;
87 * Applies a gaussian blur of the given radius to the given {@link BufferedImage} using a kernel
130 // We first pad the image so the kernel can operate at the edges.
133 new Kernel(rows, rows, kernelData), ConvolveOp.EDGE_ZERO_FILL, null));
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
core-extensions.rb 158 module Kernel
  /external/libvpx/examples/includes/geshi/geshi/
ruby.php 87 'Iconv::OutOfRange', 'IndexError', 'Interrupt', 'Kernel',
rails.php 80 'Iconv::OutOfRange', 'IndexError', 'Interrupt', 'Kernel',
  /external/llvm/tools/lli/
lli.cpp 136 clEnumValN(CodeModel::Kernel, "kernel",
137 "Kernel code model"),
  /external/clang/lib/CodeGen/
BackendUtil.cpp 254 } else if (CodeGenOpts.CodeModel == "kernel") {
255 CM = llvm::CodeModel::Kernel;
  /external/llvm/tools/llc/
llc.cpp 101 clEnumValN(CodeModel::Kernel, "kernel",
102 "Kernel code model"),
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 138 clEnumValN(CodeModel::Kernel, "kernel",
139 "Kernel code model"),
  /external/iproute2/doc/
api-ip6-flowlabels.tex 119 initialize \verb|sin6_flowinfo| at all, so that, if kernel does not
138 In order to tell kernel that application
148 Linux kernel never fills \verb|sin6_flowinfo| field, when passing
172 extension headers are ignored. Instead, kernel uses the values
174 kernel prefers the values set at connection time.
239 \item {\bf ``Indirect''.} Kernel redirects requests to user level daemon
245 \item {\bf ``Stupid''.} To allocate labels in kernel space. It is the simplest
248 it is sensitive to DoS attacks. Kernel have to remember all the obsolete
288 kernel will allocate new pseudo-random number. Otherwise, kernel will tr
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/joystick/darwin/
SDL_sysjoystick.c 40 #include <Kernel/IOKit/hidsystem/IOHIDUsageTables.h>

Completed in 975 milliseconds

1 2