Searched defs:configure (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/appwidget/
H A DAppWidgetProviderInfo.java76 * The activity to launch that will configure the AppWidget.
78 * <p>This class name of field corresponds to the <code>android:configure</code> attribute in
82 public ComponentName configure; field in class:AppWidgetProviderInfo
117 this.configure = new ComponentName(in);
135 if (this.configure != null) {
137 this.configure.writeToParcel(out, flags);
/frameworks/base/tests/appwidgets/AppWidgetHostTest/src/com/android/tests/appwidgethost/
H A DAppWidgetHostActivity.java81 void configureAppWidget(int requestCode, int appWidgetId, ComponentName configure) { argument
83 intent.setComponent(configure);
99 if (appWidget.configure != null) {
100 // configure the AppWidget if we should
101 configureAppWidget(CONFIGURE_APPWIDGET_REQUEST, appWidgetId, appWidget.configure);
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DRetryManager.java28 * retires timeouts. After creating a RetryManager the configure
30 * may be initialized using configure with three integer parameters
31 * The other configure method allows a series to be declared using
130 public boolean configure(int maxRetryCount, int retryTime, int randomizationTime) { method in class:RetryManager
133 if (DBG) log("configure: " + maxRetryCount + ", " + retryTime + "," + randomizationTime);
162 public boolean configure(String configStr) { method in class:RetryManager
163 if (DBG) log("configure: '" + configStr + "'");
168 if (DBG) log("configure: not empty");
176 if (DBG) log("configure: strArray[" + i + "]='" + strArray[i] + "'");
180 if (DBG) log("configure
[all...]

Completed in 103 milliseconds