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

1 2 3 4 5 6 7 8 91011>>

  /sfw/usr/src/cmd/erlang/otp_src_R12B-1/lib/compiler/src/
erl_bifs.erl 1 %% ``The contents of this file are subject to the Erlang Public License,
4 %% Erlang Public License along with this software. If not, it can be
5 %% retrieved via the world wide web at http://www.erlang.org/.
18 %% Purpose: Information about the Erlang built-in functions.
36 is_pure(erlang, '*', 2) -> true;
37 is_pure(erlang, '+', 1) -> true; % (even for non-numbers)
38 is_pure(erlang, '+', 2) -> true;
39 is_pure(erlang, '++', 2) -> true;
40 is_pure(erlang, '-', 1) -> true;
41 is_pure(erlang, '-', 2) -> true
    [all...]
  /sfw/usr/src/cmd/erlang/otp_src_R12B-1/lib/jinterface/java_src/com/ericsson/otp/erlang/
OtpAuthException.java 1 /* ``The contents of this file are subject to the Erlang Public License,
4 * Erlang Public License along with this software. If not, it can be
5 * retrieved via the world wide web at http://www.erlang.org/.
18 package com.ericsson.otp.erlang;
OtpErlangDecodeException.java 1 /* ``The contents of this file are subject to the Erlang Public License,
4 * Erlang Public License along with this software. If not, it can be
5 * retrieved via the world wide web at http://www.erlang.org/.
18 package com.ericsson.otp.erlang;
21 * Exception raised when an attempt is made to create an Erlang term
OtpErlangRangeException.java 1 /* ``The contents of this file are subject to the Erlang Public License,
4 * Erlang Public License along with this software. If not, it can be
5 * retrieved via the world wide web at http://www.erlang.org/.
18 package com.ericsson.otp.erlang;
21 * Exception raised when an attempt is made to create an Erlang term
OtpErlangException.java 1 /* ``The contents of this file are subject to the Erlang Public License,
4 * Erlang Public License along with this software. If not, it can be
5 * retrieved via the world wide web at http://www.erlang.org/.
18 package com.ericsson.otp.erlang;
21 * Base class for the other OTP erlang exception classes.
OtpException.java 1 /* ``The contents of this file are subject to the Erlang Public License,
4 * Erlang Public License along with this software. If not, it can be
5 * retrieved via the world wide web at http://www.erlang.org/.
18 package com.ericsson.otp.erlang;
OtpSystem.java 1 /* ``The contents of this file are subject to the Erlang Public License,
4 * Erlang Public License along with this software. If not, it can be
5 * retrieved via the world wide web at http://www.erlang.org/.
18 package com.ericsson.otp.erlang;
  /sfw/usr/src/cmd/erlang/otp_src_R12B-1/lib/ic/java_src/com/ericsson/otp/ic/
TermHelper.java 1 /* ``The contents of this file are subject to the Erlang Public License,
4 * Erlang Public License along with this software. If not, it can be
5 * retrieved via the world wide web at http://www.erlang.org/.
33 public static void marshal(com.ericsson.otp.erlang.OtpOutputStream _out, Term _any)
43 public static Term unmarshal(com.ericsson.otp.erlang.OtpInputStream _in)
49 if (tag == com.ericsson.otp.erlang.OtpExternal.versionTag) {
58 com.ericsson.otp.erlang.OtpErlangObject _obj = _in.read_any();
62 case com.ericsson.otp.erlang.OtpExternal.smallIntTag:
63 case com.ericsson.otp.erlang.OtpExternal.intTag:
64 case com.ericsson.otp.erlang.OtpExternal.smallBigTag
    [all...]
Port.java 1 /* ``The contents of this file are subject to the Erlang Public License,
4 * Erlang Public License along with this software. If not, it can be
5 * retrieved via the world wide web at http://www.erlang.org/.
22 Port class mapps the built-in erlang type port, a process port.
26 final public class Port extends com.ericsson.otp.erlang.OtpErlangPort {
28 public Port(com.ericsson.otp.erlang.OtpInputStream buf)
29 throws com.ericsson.otp.erlang.OtpErlangDecodeException {
Pid.java 1 /* ``The contents of this file are subject to the Erlang Public License,
4 * Erlang Public License along with this software. If not, it can be
5 * retrieved via the world wide web at http://www.erlang.org/.
23 Pid class mapps the built-in erlang type pid, a process identity.
28 final public class Pid extends com.ericsson.otp.erlang.OtpErlangPid {
30 public Pid(com.ericsson.otp.erlang.OtpSelf self) {
34 public Pid(com.ericsson.otp.erlang.OtpInputStream buf)
35 throws com.ericsson.otp.erlang.OtpErlangDecodeException {
Ref.java 1 /* ``The contents of this file are subject to the Erlang Public License,
4 * Erlang Public License along with this software. If not, it can be
5 * retrieved via the world wide web at http://www.erlang.org/.
22 Ref class mapps the built-in erlang type Ref, a message reference.
26 final public class Ref extends com.ericsson.otp.erlang.OtpErlangRef {
28 public Ref(com.ericsson.otp.erlang.OtpSelf self) {
33 public Ref(com.ericsson.otp.erlang.OtpInputStream buf)
34 throws com.ericsson.otp.erlang.OtpErlangDecodeException {
40 old erlang Ref type.
Term.java 1 /* ``The contents of this file are subject to the Erlang Public License,
4 * Erlang Public License along with this software. If not, it can be
5 * retrieved via the world wide web at http://www.erlang.org/.
22 The Term class is intended to represent the erlang term generic type.
38 protected com.ericsson.otp.erlang.OtpErlangObject ObjV;
43 @return int, the tag of the Object that denotes the erlang external format tag
58 if (tag == com.ericsson.otp.erlang.OtpExternal.atomTag)
64 return (ObjV instanceof com.ericsson.otp.erlang.OtpErlangAtom) ;
86 if (tag == com.ericsson.otp.erlang.OtpExternal.floatTag)
98 case com.ericsson.otp.erlang.OtpExternal.smallIntTag
    [all...]
Environment.java 1 /* ``The contents of this file are subject to the Erlang Public License,
4 * Erlang Public License along with this software. If not, it can be
5 * retrieved via the world wide web at http://www.erlang.org/.
38 private com.ericsson.otp.erlang.OtpSelf self;
39 private com.ericsson.otp.erlang.OtpPeer peer;
42 private com.ericsson.otp.erlang.OtpConnection connection;
43 private com.ericsson.otp.erlang.OtpErlangRef send_ref; /* Client side send reference */
44 private com.ericsson.otp.erlang.OtpErlangRef receive_ref; /* Client side received reference */
45 private com.ericsson.otp.erlang.OtpErlangPid clientP;
46 private com.ericsson.otp.erlang.OtpErlangPid serverP
    [all...]
AnyHolder.java 1 /* ``The contents of this file are subject to the Erlang Public License,
4 * Erlang Public License along with this software. If not, it can be
5 * retrieved via the world wide web at http://www.erlang.org/.
44 public void _marshal(com.ericsson.otp.erlang.OtpOutputStream out)
53 public void _unmarshal(com.ericsson.otp.erlang.OtpInputStream in)
PidHolder.java 1 /* ``The contents of this file are subject to the Erlang Public License,
4 * Erlang Public License along with this software. If not, it can be
5 * retrieved via the world wide web at http://www.erlang.org/.
41 public void _marshal(com.ericsson.otp.erlang.OtpOutputStream out) throws java.lang.Exception {
49 public void _unmarshal(com.ericsson.otp.erlang.OtpInputStream in) throws java.lang.Exception {
PortHolder.java 1 /* ``The contents of this file are subject to the Erlang Public License,
4 * Erlang Public License along with this software. If not, it can be
5 * retrieved via the world wide web at http://www.erlang.org/.
41 public void _marshal(com.ericsson.otp.erlang.OtpOutputStream out)
50 public void _unmarshal(com.ericsson.otp.erlang.OtpInputStream in)
RefHolder.java 1 /* ``The contents of this file are subject to the Erlang Public License,
4 * Erlang Public License along with this software. If not, it can be
5 * retrieved via the world wide web at http://www.erlang.org/.
41 public void _marshal(com.ericsson.otp.erlang.OtpOutputStream out) throws java.lang.Exception {
49 public void _unmarshal(com.ericsson.otp.erlang.OtpInputStream in) throws java.lang.Exception {
TermHolder.java 1 /* ``The contents of this file are subject to the Erlang Public License,
4 * Erlang Public License along with this software. If not, it can be
5 * retrieved via the world wide web at http://www.erlang.org/.
42 public void _marshal(com.ericsson.otp.erlang.OtpOutputStream out)
51 public void _unmarshal(com.ericsson.otp.erlang.OtpInputStream in)
  /sfw/usr/src/cmd/erlang/otp_src_R12B-1/lib/mnesia/examples/bench/
bench.sh 18 erl $args -s bench run $1 -s erlang halt
  /sfw/usr/src/cmd/erlang/otp_src_R12B-1/lib/observer/priv/bin/
etop 4 erl -sname $NAME -hidden -s etop -s erlang halt -output text $@
getop 4 erl -sname $NAME -noinput -hidden -s etop -s erlang halt $@
  /sfw/usr/src/cmd/erlang/otp_src_R12B-1/lib/orber/src/
erlang_port.erl 6 %% Source: /ldisk/daily_build/otp_prebuild_r12b.2008-02-05_20/otp_src_R12B-1/lib/ic/include/erlang.idl
17 -include("erlang.hrl").
24 tc() -> {tk_struct,"IDL:erlang/port:1.0","port",
30 id() -> "IDL:erlang/port:1.0".
erlang_ref.erl 6 %% Source: /ldisk/daily_build/otp_prebuild_r12b.2008-02-05_20/otp_src_R12B-1/lib/ic/include/erlang.idl
17 -include("erlang.hrl").
24 tc() -> {tk_struct,"IDL:erlang/ref:1.0","ref",
30 id() -> "IDL:erlang/ref:1.0".
erlang_pid.erl 6 %% Source: /ldisk/daily_build/otp_prebuild_r12b.2008-02-05_20/otp_src_R12B-1/lib/ic/include/erlang.idl
17 -include("erlang.hrl").
24 tc() -> {tk_struct,"IDL:erlang/pid:1.0","pid",
31 id() -> "IDL:erlang/pid:1.0".
  /sfw/usr/src/cmd/ejabberd/ejabberd-2.0.5/examples/mtr/
ejabberd-netbsd.sh 3 echo '1. fetch, compile, and install erlang'
5 if [ ! pkg_info erlang 1>/dev/null 2>&1 ]; then
6 cd /usr/pkgsrc/lang/erlang
11 if pkg_info erlang | grep -q erlang-9.1nb1; then
13 echo "erlang-9.1nb1 not installed" 1>&2
20 if [ ! -d /usr/pkg/lib/erlang/lib/crypto-1.1.2.1/priv/lib ] ; then
21 mkdir -p /usr/pkg/lib/erlang/lib/crypto-1.1.2.1/priv/lib
23 if [ ! -f /usr/pkg/lib/erlang/lib/crypto-1.1.2.1/priv/lib/crypto_drv.so ]; then
25 /usr/pkg/lib/erlang/lib/crypto-1.1.2.1/priv/li
    [all...]

Completed in 480 milliseconds

1 2 3 4 5 6 7 8 91011>>