HomeSort by relevance Sort by last modified time
    Searched defs:binary (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
BinaryClassObject.java 5 * Redistribution and use in source and binary forms, with or without
12 * * Redistributions in binary form must reproduce the above copyright
33 package com.jme3.export.binary;
BinaryIdContentPair.java 5 * Redistribution and use in source and binary forms, with or without
12 * * Redistributions in binary form must reproduce the above copyright
33 package com.jme3.export.binary;
ByteUtils.java 5 * Redistribution and use in source and binary forms, with or without
12 * * Redistributions in binary form must reproduce the above copyright
33 package com.jme3.export.binary;
BinaryClassField.java 5 * Redistribution and use in source and binary forms, with or without
12 * * Redistributions in binary form must reproduce the above copyright
33 package com.jme3.export.binary;
BinaryOutputCapsule.java 5 * Redistribution and use in source and binary forms, with or without
12 * * Redistributions in binary form must reproduce the above copyright
33 package com.jme3.export.binary;
  /external/chromium/chrome/browser/extensions/
extension_browser_actions_api.cc 48 BinaryValue* binary = NULL; local
49 EXTENSION_FUNCTION_VALIDATE(details_->GetBinary("imageData", &binary));
50 IPC::Message bitmap_pickle(binary->GetBuffer(), binary->GetSize());
extension_sidebar_api.cc 232 BinaryValue* binary; local
233 EXTENSION_FUNCTION_VALIDATE(details.GetBinary(kImageDataKey, &binary));
234 IPC::Message bitmap_pickle(binary->GetBuffer(), binary->GetSize());
  /external/oprofile/daemon/
opd_mangling.c 145 char const * binary; local
183 binary = find_cookie(sf->cookie);
185 binary = sf->kernel->name;
197 binary ? op_get_mtime(binary) : 0);
  /external/oprofile/libpp/
profile_spec.h 123 std::string binary; member in class:profile_spec
  /external/apache-http/src/org/apache/commons/codec/binary/
BinaryCodec.java 17 package org.apache.commons.codec.binary;
73 * Converts an array of raw binary data into an array of ascii 0 and 1 characters.
76 * the raw binary data to convert
85 * Converts an array of raw binary data into an array of ascii 0 and 1 chars.
88 * the raw binary data to convert
106 * @return the raw encoded binary where each bit corresponds to a byte in the byte array argument
132 * @return the raw encoded binary where each bit corresponds to a byte in the byte array argument
144 * @return the raw encoded binary where each bit corresponds to a byte in the byte array argument
164 * @return the raw encoded binary where each bit corresponds to a char in the char array argument
191 * @return the raw encoded binary where each bit corresponds to a byte in the byte array argumen
    [all...]
Hex.java 17 package org.apache.commons.codec.binary;
49 * @return A byte array containing binary data decoded from
124 * @return A byte array containing binary data decoded from
142 * @return A byte array containing binary data decoded from
Base64.java 17 package org.apache.commons.codec.binary;
171 * Encodes binary data using the base64 algorithm but
174 * @param binaryData binary data to encode
182 * Encodes binary data using the base64 algorithm and chunks
185 * @param binaryData binary data to encode
201 * binary data which corresponds to the byte[] supplied.
217 * @return a byte array containing binary data
224 * Encodes binary data using the base64 algorithm, optionally
227 * @param binaryData Array containing binary data to encode.
514 * Encodes a byte[] containing binary data, into a byte[] containin
    [all...]
  /external/checkpolicy/
checkmodule.c 115 printf("%s: writing binary representation (version %d) to %s\n",
148 printf(" -b treat input as a binary policy file\n");
163 unsigned int binary = 0; local
170 {"binary", no_argument, NULL, 'b'},
186 binary = 1;
243 if (binary) {
checkpolicy.c 41 * and then compiled into a binary format for use by
44 * reads the binary format instead.
47 * writes the binary format version of the configuration
55 * determine which policy version to use for generating binary
388 unsigned int binary = 0, debug = 0; local
402 {"binary", no_argument, NULL, 'b'},
428 binary = 1;
501 if (binary) {
600 ("%s: writing binary representation (version %d) to %s\n",
  /external/chromium/chrome/browser/ui/webui/options/
advanced_options_utils_gtk.cc 33 std::string binary; member in struct:ProxyConfigCommand
40 // it in the |binary| field and the command array index in in |index|.
53 commands[i].binary = bin_path.value();
80 argv.push_back(command.binary);
86 LOG(ERROR) << "StartProxyConfigUtil failed to start " << command.binary;
  /bootable/recovery/
install.cpp 39 #define ASSUMED_UPDATE_BINARY_NAME "META-INF/com/google/android/update-binary"
48 // If the package contains an update binary, extract it and run it.
58 const char* binary = "/tmp/update_binary"; local
59 unlink(binary);
60 int fd = creat(binary, 0755);
63 LOGE("Can't make %s\n", binary);
78 // When executing the update binary contained in the package, the
113 args[0] = binary;
124 execv(binary, (char* const*)args);
125 fprintf(stdout, "E:Can't run %s (%s)\n", binary, strerror(errno))
    [all...]
  /external/iptables/iptables/
ip6tables-restore.c 28 static int binary = 0, counters = 0, verbose = 0, noflush = 0; variable
32 {.name = "binary", .has_arg = false, .val = 'b'},
47 " [ --binary ]\n"
147 binary = 1;
iptables-restore.c 25 static int binary = 0, counters = 0, verbose = 0, noflush = 0; variable
29 {.name = "binary", .has_arg = false, .val = 'b'},
47 " [ --binary ]\n"
150 binary = 1;
  /external/llvm/tools/llvm-size/
llvm-size.cpp 246 // Attempt to open the binary.
247 OwningPtr<Binary> binary; local
248 if (error_code ec = createBinary(file, binary)) {
253 if (Archive *a = dyn_cast<Archive>(binary.get())) {
257 OwningPtr<Binary> child;
271 } else if (ObjectFile *o = dyn_cast<ObjectFile>(binary.get())) {
  /device/samsung/tuna/recovery/
bootloader.c 61 int binary; /* BINARY_TYPE_ */ member in struct:pit_partinfo
  /external/dbus/dbus/
dbus-internals.c 642 DBusString binary; local
643 _dbus_string_init_const_len (&binary, uuid->as_bytes, DBUS_UUID_LENGTH_BYTES);
644 return _dbus_string_hex_encode (&binary, 0, encoded, _dbus_string_get_length (encoded));
  /external/stlport/src/
ios.cpp 72 const ios_base::openmode ios_base::binary; member in class:ios_base
  /ndk/sources/cxx-stl/stlport/src/
ios.cpp 74 const ios_base::openmode ios_base::binary; member in class:ios_base
  /system/core/toolbox/grep/
grep.h 10 * Redistribution and use in source and binary forms, with or without
15 * 2. Redistributions in binary form must reproduce the above copyright
90 bool binary; member in struct:file
  /external/astl/include/
ios_base.h 6 * Redistribution and use in source and binary forms, with or without
11 * * Redistributions in binary form must reproduce the above copyright
173 // binary: perform I/O in binary mode.
179 static const openmode binary = android::ios_baseopenmode_binary; member in class:std::ios_base

Completed in 339 milliseconds

1 2 3