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

1 2 3 4 5 6 7 8 910

  /external/trappy/scripts/
publish_interactive_plots.py 18 """This is a script to publish a notebook containing Ipython graphs
67 def publish(source, target): function
68 """Publish the notebook for globally viewable interactive
123 publish(notebook, outfile)
  /libcore/dalvik/src/main/java/dalvik/system/
DalvikLogHandler.java 36 * java.util.logging.Handler#publish(java.util.logging.LogRecord)}, this
44 void publish(Logger source, String tag, Level level, String message); method in interface:DalvikLogHandler
  /external/autotest/client/cros/image_comparison/
publisher.py 28 @param results_folder: path, where to publish to
36 def publish(self, golden_image_path, test_image_path, diff_image_path, member in class:ImageDiffPublisher
  /packages/services/Car/tests/carservice_test/src/com/android/car/
SimpleVmsPublisherClientService.java 33 // Publish a property that is going to be verified in the test.
34 publish(VmsPublisherClientServiceTest.MOCK_PUBLISHER_LAYER, method
VmsPublisherClientMockService.java 70 publish(VmsPublisherSubscriberTest.LAYER, method
  /external/slf4j/log4j-over-slf4j/src/test/java/org/dummy/
ListHandler.java 8 * without limitation the rights to use, copy, modify, merge, publish,
44 public void publish(LogRecord logRecord) { method in class:ListHandler
  /frameworks/native/libs/binder/include/binder/
BinderService.h 37 static status_t publish(bool allowIsolated = false, function in class:android::BinderService
47 publish(allowIsolated, dumpFlags);
51 static void instantiate() { publish(); }
  /frameworks/native/services/thermalservice/
ThermalService.cpp 117 * Publish the supplied ThermalService to servicemanager.
119 void ThermalService::publish( function in class:android::os::ThermalService
  /external/autotest/site_utils/
pubsub_utils_unittest.py 43 def publish(self, topic, body): member in class:MockedPubSub
44 """Mocked PubSub publish method.
  /external/guava/guava-testlib/src/com/google/common/testing/
TestLogHandler.java 66 public void publish(@Nullable LogRecord record) { method in class:TestLogHandler
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
TestLogHandler.java 30 @Override public synchronized void publish(LogRecord logRecord) { method in class:TestLogHandler
  /libcore/ojluni/src/main/java/java/util/logging/
ConsoleHandler.java 106 * Publish a <tt>LogRecord</tt>.
115 public void publish(LogRecord record) { method in class:ConsoleHandler
116 super.publish(record);
SocketHandler.java 199 * Format and publish a <tt>LogRecord</tt>.
205 public synchronized void publish(LogRecord record) { method in class:SocketHandler
209 super.publish(record);
StreamHandler.java 188 * Format and publish a <tt>LogRecord</tt>.
205 public synchronized void publish(LogRecord record) { method in class:StreamHandler
  /frameworks/base/core/java/com/android/internal/logging/
AndroidHandler.java 125 public void publish(LogRecord record) { method in class:AndroidHandler
140 public void publish(Logger source, String tag, Level level, String message) { method in class:AndroidHandler
  /external/caliper/caliper/src/test/java/com/google/caliper/config/
LoggingConfigLoaderTest.java 83 fileHandler.publish(new LogRecord(INFO, "some message"));
  /external/slf4j/slf4j-jdk14/src/test/java/org/slf4j/impl/
JDK14AdapterLoggerNameTest.java 8 * without limitation the rights to use, copy, modify, merge, publish,
84 public void publish(LogRecord record) { method in class:JDK14AdapterLoggerNameTest.MockHandler
  /external/webrtc/webrtc/libjingle/xmpp/
pubsubclient.cc 87 const XmlElement* publish = pubsub->FirstNamed(QN_PUBSUB_PUBLISH); local
88 if (publish != NULL) {
89 return publish->FirstNamed(QN_PUBSUB_ITEM);
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/aware/
TestUtils.java 62 public boolean publish(short transactionId, byte publishId, PublishConfig publishConfig) { method in class:TestUtils.MonitoredWifiAwareNativeApi
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldXMLFormatterTest.java 64 handler.publish(lr);
65 assertEquals("Tail string after publish() should be equal expected value",
72 public void publish(LogRecord record) {} method in class:OldXMLFormatterTest.MockHandler
  /packages/services/Car/tests/VmsPublisherClientSample/src/com/google/android/car/vms/publisher/
VmsPublisherClientSampleService.java 49 * Notifies that the publisher services are ready to be used: {@link #publish(VmsLayer, byte[])}
77 publish(TEST_LAYER, PUBLISHER_ID, new byte[]{mCounter}); method
  /system/core/storaged/
storaged_diskstats.cpp 319 void disk_stats_monitor::publish(void) function in class:disk_stats_monitor
  /frameworks/base/wifi/java/android/net/wifi/aware/
WifiAwareSession.java 64 * also disable Aware. This method destroys all outstanding operations - i.e. all publish and
116 * Issue a request to the Aware service to create a new Aware publish discovery session, using
117 * the specified {@code publishConfig} configuration. The results of the publish operation
123 * is called when the publish session is created and provides a handle to the session.
124 * Further operations on the publish session can be executed on that object.
126 * publish operation failed.
129 * Other results of the publish session operations will also be routed to callbacks
130 * on the {@code callback} object. The resulting publish session can be modified using
134 * terminate the publish discovery session once it isn't needed. This will free
137 * permission to start a publish discovery session
146 public void publish(@NonNull PublishConfig publishConfig, method in class:WifiAwareSession
    [all...]
  /packages/services/Car/car-lib/src/android/car/vms/
VmsPublisherClientService.java 98 * Uses the VmsPublisherService binder to publish messages.
100 * @param layer the layer to publish to.
104 * @return if the call to the method VmsPublisherService.publish was successful.
106 public final void publish(VmsLayer layer, int publisherId, byte[] payload) { method in class:VmsPublisherClientService
114 mVmsPublisherService.publish(token, layer, publisherId, payload);
116 Log.e(TAG, "unable to publish message: " + payload, e);
123 * @param offering the layers that the publisher may publish.
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
LoggerRuntime.java 169 public void publish(final LogRecord record) { method in class:LoggerRuntime.RuntimeHandler

Completed in 429 milliseconds

1 2 3 4 5 6 7 8 910